A collection of templates I made for my Jekyll-powered blog. I thought that other people might want to use them, so I tossed them up here.
The collection so far:
- A template for adding social metadata (Open Graph and Twitter Cards) to posts and pages
- A template for adding Disqus comments
- A template for listing posts by tag
- A posts heatmap calendar
- Options for Search on a Jekyll site
- A template for filtering categories with Isotope
- A Jekyll Collection template for Book Reviews, complete with star ratings
- Moving your Jekyll Site to Amazon S3 and Cloudfront with Outside DNS
- Moving WordPress posts to Jekyll
- Improving Jekyll Build Time
The social_metadata.html
file is a template for easily adding Open Graph and Twitter Cards metadata for your Jekyll posts. The Liquid markup relies on some settings from your _config.yml
file and some settings from the YAML front-matter on each post.
- Place the
social_metadata.html
file in the_includes
folder inside your Jekyll site. - Include the file inside the
<head> </head>
tags on your post pages. Most Jekyll themes make the headers a separate file that is itself included in other templates. It is usually called something likeheader.html
orhead.html
and usually also lives inside the_includes
folder. - You can include it with Liquid like this:
{% include social_metadata.html %}
Make sure the following items are defined in your _config.yml
file (learn more here). Replace my examples with your own info:
title: Chuck Grimmett's GitHub
url: "" # the subpath of your site, e.g. /blog/
baseurl: "http://example.com" # the base hostname & protocol for your site
locale: en_US # language_territory is the default
theme:
description: "This is my awesome Jekyll site"
avatar: "/link/to/img.jpg"
twitter: "username" # Don't include @
Make sure the following items are defined in your posts' front matter:
---
title:
author:
date: YYYY-MM-DD
feature-img: "/link/to/img.jpg"
excerpt: This post is about blah blah blah...
---
Don't just copy and paste the above blocks. Some of these are probably already in your _config.yml
file or your posts' front matter. Add what is missing to the correct section. Be mindful of indentation.
- Validate your Open Graph metadata with Facebook's Debugger
- Validate your Twitter Cards with Twitter's Card Validator
The disqus.html
is a way to add Disqus commenting to your Jekyll posts. Disqus also provides instructions for an alternative way.
- Put the
disqus.html
file in the_includes
folder inside your Jekyll site. - Register your site on Disqus
Under theme:
in your _config.yml
file (learn more here), define your Disqus shortname:
theme:
disqus_shortname: "exampleshortname"
Put this snippet in the post where you want your comments to show up. I put mine at the bottom of my posts template, just before the footer.
<!-- Disqus -->
{% if site.theme.disqus_shortname %}
<div class="comments">
{% include disqus.html %}
</div>
{% endif %}
posts_by_tag.md
is a page that displays the site's tags in alphabetical order and shows how many posts there are per tag, makes anchor links for each tag, then outputs posts by tag in reverse chronological order. You can see it in practice at the bottom of my Today I Learned page. It will end up looking like this:
Put the posts_by_tag.md
file at the root of your Jekyll site. After your generate your site via $ jekyll build
, it will be available at http://yoursitename.com/tags/
Add tags to your posts by including them in your posts' front matter:
---
tags:
- Foo
- Bar
---
Here are the styles for the classes that are set in the posts_by_tag.md
file for the layout of the tags. Include them in your site's CSS file:
ul.tag-box li {
display: inline-block;
list-style: none;
list-style-image: none;
margin-bottom: 7px;
}
ul.tag-box li a {
background: #e6e6e6;
padding: 4px 8px;
border-radius: 3px;
color: #F76B48;
}
ul.tag-box li span.size {
font-weight: 300;
}
This heatmap calendar gives you a visual representation of when you posted on your Jekyll site. It loops through all of your posts, counts how many posts you have each day, creates a JSON string to hold them, then uses moment.js, D3.js and Cal-HeatMap to visualize them.
It automatically loads the current month on the right and it has responsive breakpoints at 1400px, 730px, and 420px. It will work on Github Pages because it doesn't need any additional plugins to run. It only uses Liquid to do the counting and build the JSON string.
See it in action at http://cagrimmett.com/2016/07/06/posts-heatmap-calendar.html
Put the posts_heatmap_calendar.md
file at the root of your Jekyll site. After your generate your site via $ jekyll build
, it will be available at http://yoursitename.com/posts-cal/
Alternatively, here is how you can include it on any Jekyll-generated page:
- Put these includes in the file's header:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.3/jquery.min.js"></script>
<script src="https://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script type="text/javascript" src="//cdn.jsdelivr.net/cal-heatmap/3.3.10/cal-heatmap.min.js"></script>
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="//cdn.jsdelivr.net/cal-heatmap/3.3.10/cal-heatmap.css" />
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.14.1/moment.min.js"></script>
<style type="text/css">
.content {
min-width: 400px;
}
#calendar {
width: 839px;
}
.subdomain-text {
fill: #fff;
}
#calendar a {
color: #999;
}
@media all and (max-width:1400px) {
#calendar {
width: 626px;
}
}
@media all and (max-width:730px) {
#calendar {
width:365px;
}
}
@media all and (max-width:420px) {
#calendar {
width:191px;
}
}
</style>
Note: I'm only using FontAwesome for the left and right arrows under the calendar. I included it because I use it elsewhere on my site, so it is always available in the header. If you don't want to use it, feel free to replace the arrows with ←
and →
.
- Include this Javascript in the footer to build the JSON, generate the calendar, and drive the responsiveness:
<script type="text/javascript">
var data = {% assign counter = 0 %}{
{% for post in site.posts %}{% capture day %}{{ post.date | date: '%s' }}{% endcapture %}{% capture prevday %}{{ post.previous.date | date: '%s' }}{% endcapture %}{% assign counter = counter | plus: 1 %}{% if day != prevday %}"{{ post.date | date: '%s' }}": {{ counter }}{% assign counter = 0 %}{% if forloop.last == false %},{% endif %}
{% endif %}{% endfor %}};
var responsiveCal = function( options ) {
var now = new Date();
if( $(window).width() < 420 ) {
options.start = now.setMonth(now.getMonth());
options.range = 1;
options.cellSize = 25;
} else if ( $(window).width() < 730 ) {
options.start = now.setMonth(now.getMonth() - 1);
options.range = 2;
options.cellSize = 20;
} else if( $(window).width() < 1400 ) {
options.start = now.setMonth(now.getMonth() - 2);
options.range = 3;
options.cellSize = 23;
} else {
options.start = now.setMonth(now.getMonth() - 3);
options.range = 4;
options.cellSize = 23;
}
if( typeof cal === "object" ) {
$('#cal-heatmap').html('');
cal = cal.destroy();
}
cal = new CalHeatMap();
cal.init( options );
}
caloptions = {
itemSelector: "#cal-heatmap",
domain: "month",
subDomain: "x_day",
data: data,
dataType: "json",
cellPadding: 5,
domainGutter: 20,
displayLegend: false,
range: 4,
considerMissingDataAsZero:false,
domainDynamicDimension: true,
previousSelector: "#cal-heatmap-PreviousDomain-selector",
nextSelector: "#cal-heatmap-NextDomain-selector",
domainLabelFormat: function(date) {
moment.locale("en");
return moment(date).format("MMMM").toUpperCase();
},
subDomainTextFormat: "%d",
legend: [0,1,2,3],
label: {
position: "top"
}
};
// run first time, put in load if your scripts are in footer
responsiveCal( caloptions );
$(window).resize(function() {
if(this.resizeTO) clearTimeout(this.resizeTO);
this.resizeTO = setTimeout(function() {
$(this).trigger('resizeEnd');
}, 500);
});
//resize on resizeEnd function
$(window).bind('resizeEnd', function() {
responsiveCal( cal.options );
});
</script>
- Put this HTML on the page where you want the calendar to show up:
<div id="calendar" style="margin:0 auto;">
<div id="cal-heatmap"></div>
<div style="padding-top: 10px;">
<a href="#" style="margin-right:10px;" id="cal-heatmap-PreviousDomain-selector"><i class="fa fa-chevron-left"></i></a>
<a href="#" style="float:right;" id="cal-heatmap-NextDomain-selector"><i class="fa fa-chevron-right"></i></a>
</div>
</div>
- Refer to the Cal-HeatMap documentation for how to change the colors, add a legend, and change the cell size.
- To change the responsive breakpoints, change the various widths at
$(window).width() < X
in theresponsiveCal
function. - Only want to use this for a specific category like I do? Change
{% for post in site.posts %}
in thedata
variable to{% for post in site.categories['CATEGORYNAME'] %}
(change CATEGORYNAME to the name of the category you want to use this for)
- Here is a write-up on my site about two different options for search: Google Custom Search and a custom static index that you query against.
- I recommend Mat Hayward’s Jekyll Search scripts. It is what I used to power search on my personal site. I modified the way the dates are formatted, how the excerpt gets put into the JSON file, the output styles, and put in a conditional for external link posts, but the heavy-lifting is still done by Mat Hayward's scripts.
The template can be found at category-filter-isotope/category-filter-isotope.html
.
Isotope is a popular jQuery filtering and sorting plugin. I combined it with Liquid to automatically generate category filtering.
"All" is selected by default. The other buttons come from the category you specify at the top of a post in your yaml front matter.
Generate the buttons from categories:
<div class="button-group filter-button-group">
{% for category in site.categories %}
<a class="button" data-filter=".{{ category | first }}">{{ category | first }}</a>
{% endfor %}
<a class="button active" data-filter="*">All</a>
</div>
Generate your posts:
<div class="grid">
{% for post in site.posts %}
<div class="element-item {{ post.category }}">
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
<p>
{{ post.excerpt }}
</p>
</div>
{% endfor %}
</div>
Include the jQuery and Isotope libraries, then set up the functions to trigger the filtering and setting an "active" class on your buttons so you can highlight the active one:
<script src="http://code.jquery.com/jquery-3.1.0.min.js" integrity="sha256-cCueBR6CsyA4/9szpPfrX3s49M9vUU5BgtiJj06wt/s=" crossorigin="anonymous"></script>
<script src="https://unpkg.com/isotope-layout@3.0/dist/isotope.pkgd.js"></script>
// init Isotope
var $grid = $('.grid').isotope({
// options
});
// filter items on button click
$('.filter-button-group').on( 'click', 'a', function() {
var filterValue = $(this).attr('data-filter');
$grid.isotope({ filter: filterValue });
});
$('.button-group a.button').on('click', function(){
$('.button-group a.button').removeClass('active');
$(this).addClass('active');
});
I started writing book notes and collecting them on my website as reviews, so I thought I'd make the template I wrote public. No plugin necessary, so it should work on Github Pages.
A working demonstration of this collection can be seen at http://cagrimmett.com/book-notes
Here is a preview of a book review detail:
All assets for this collection can be found in the book-reviews
folder in this project.
- You first need to register the collection in
_config.yml
. Append this to the bottom of your current_config.yml
or, if you already have a collection registered, add another entry. This same example is :
# Collections
collections:
book_reviews:
output: true
output_ext: .html
permalink: /book-reviews/:path/
-
Place the
_book_reviews
folder and thebook-reviews.html
file in your Jekyll site root. This is the same folder that contains the_config.yml
and_posts
folder. -
If you use Sass, place the contents of
_book_reviews.scss
file in your main Sass file. If you don't use Sass, you'll need to rewrite the media queries (the first 45 lines) in regular CSS. -
Write your book review and place it in the
_book_reviews
folder (an example is included). The rating is out of 5 stars and supports half stars. The templates assume that your images are stored in animg
folder in your site root. Example:yoursite.com/img/book_cover_image.jpg
If you want theexample_review.md
to work, make sure you putimg/deep_work.jpg
in your site'simg
folder.
- This is powered by Jekyll Collections. No plugin necessary.
- I set up custom YAML metadata for the individual posts, which the landing page and detail page templates use and display. Feel free to change it to your needs. Here is an example book review post:
---
layout: book-reviews-template
title: Deep Work - Rules for Focused Success in a Distracted World
author: Cal Newport
category: Self-Improvement
tags:
- Time management
- Work
- Focus
stars: 4
book-link: http://amzn.to/2gaSjqy
cover: deep_work.jpg
format: Audio Book
date: 2016-11-28
excerpt: "Deep work is the ability to focus without distraction on a cognitively demanding task. It produces great results."
---
After hearing a few interviews with Cal Newport on podcasts, I decided to pick this up. The book is divided into two main sections: The idea or "why" behind deep work, in which Newport tries to convince you it is necessary. I more or less bought in to this before listening to the book, but I listened to it anyway. The second part are the rules for how to do deep work. Newport writes this from an academic's point of view, but there are definitely universal principles you can apply.
- The stars are powered by some defined CSS classes, a clever
span
setup controlling the width for color fill, and some Liquid to calculate the CSS class value:
<span class="stars-container stars-{{ page.stars | times:20 | round: 0 }}" title="{{ page.stars }}/5">★★★★★</span></p>
- If you have a custom open graph generator, you might need to add some if/elsif statements to get the cover to show in the
og:image
field. - Depending on your default layout template, you might need to edit my
book-reviews.html
page or thebook-reviews-template.html
template to work well with your layout. I'm assuming that if you use Jekyll, you probably know what you are doing. If not, drop me an email and I'll try to help. - I don't use all of the metadata on the landing page. I leave some items for the detail page. Feel free to change it to your liking.