A Jekyll template built with Bootstrap 4 suitable for bloggers. Highly inspired by Medium's website layout.
Install Mundana
- Download or
git clone https://github.com/wowthemesnet/mundana-theme-jekyll.git
- In Mundana’s newly created directory
bundle
- Change your configuration in
_config.yml
. If your site is in root, forbaseurl
, make sure this is set tobaseurl: ''
jekyll serve --watch
Use
YAML Post Example:
---
layout: post
title: "We all wait for summer"
author: john
categories: [ Jekyll, tutorial ]
image: assets/images/5.jpg
---
comments: false
- disable comments in posts
image: "https://www.myexternal.com/image.jpg"
- set external featured image
tags: [featured]
- to display Featured posts on homepage
YAML Page Example:
---
title: "About"
permalink: "/about.html"
image: "/assets/images/screenshot.jpg"
---
Add sticky post on homepage
Tag a post as sticky
to highlight a post on homepage.
Example:
---
layout: post
title: "Could we reinvent the charm of old cities"
author: jane
categories: [ Jekyll, tutorial ]
image: assets/images/home.jpg
tags: [sticky]
---