Blog ThemeBlog themes are the perfect Jekyll themes to use if you're looking to start your own blog, they're optmized for readability, so you can focus on writing.
Free ThemeFree themes are perfect if you're just starting out with Jekyll. Since they're free, you don't have to worry about choosing the wrong theme.
Github Pages ThemeThese Jekyll themes all work great with Github Pages, allowing you to quickly get your site live without any hassle.
A Jekyll template built with Bootstrap 4 suitable for bloggers. Highly inspired by Medium’s website layout.
Mediumish is a responsive Jekyll Bootstrap Theme, compatible with Bootstrap 4, free for personal and commercial use.
Features
- Built for Jekyll
- Compatible with Github pages
- Featured Posts
- Index Pagination
- SEO
- Feed
- Sitemap
- Post Share
- Post Categories
- Prev/Next Link
- Category Archives (Compatible with Github pages)
- Jumbotron Categories
- Post Reviews with Stars
- Blurred Spoilers
- Table of Content
- Lazy Load Images
- Integrations:
- Disqus Comments
- Google Analaytics
- Mailchimp Integration
- Adsense
- Design Features:
- Bootstrap v4.x
- Font Awesome
- Masonry
- Layouts:
- Default
- Post
- Page
- Archive
- Categories (for 100% compatibility with Github pages)
YAML Post Example:
1
2
3
4
5
6
7
8 | ---
layout: post
title: "We all wait for summer"
author: john
categories: [ Jekyll, tutorial ]
image: assets/images/5.jpg
description: "Something about this post here"
--- |
YAML Page Example:
1
2
3
4
5 | ---
layout: page
title: Mediumish Template for Jekyll
comments: true
--- |
Rating:
1
2
3
4
5
6
7
8
9 | ---
layout: post
title: "We all wait for summer"
author: john
categories: [ Jekyll, tutorial ]
image: assets/images/5.jpg
description: "Something about this post here"
rating: 4.5
--- |
Enable this option by editing _config.yml
.
1
2
3
4 | # Adsense (change to "enabled" to activate, also your client id and ad slot. Create a new ad unit from your Adsense account to get the slot.)
adsense: "disabled"
adsense-data-ad-client: "ca-pub-3412143450191416"
adsense-data-ad-slot: "1363087678" |
Lazy Load Images
Enable this option by editing _config.yml
.
1
2 | # Lazy Images ("enabled" or "disabled")
lazyimages: "enabled" |
Table of Contents
Add toc:true
on your post YAML.
1
2
3
4
5
6
7
8
9 | ---
layout: post
title: "Education must also train one for quick, resolute and effective thinking."
author: john
categories: [ Jekyll, tutorial ]
image: assets/images/3.jpg
beforetoc: "Markdown editor is a very powerful thing. In this article I'm going to show you what you can actually do with it, some tricks and tips while editing your post."
toc: true
--- |