The first thing you’ll notice is the post-meta gives more info. Minima has the date, modified date, and page authors. Wren improves the modified date formatting1, shows the reading time, any tags and authors (both linked to post-list pages), and then finally indicates if the post was originally published elsewhere (given in the frontmatter by service name, or name and URL).

Wren uses kramdown rather than GitHub Flavoured Markdown for rendering markdown which means that we’ve access to footnotes2, abbreviation syntax from PHP, inline attributes to change style without inline HTML, and more. See the source for this page to see how it’s done.

Photo of Me

Minima’s default SASS does have some default stylings for images, but Wren extends that and uses kramdown’s image syntax so that our images can be left aligned with text wrap by adding {: class="left" } after than standard markdown.

Photo of Me

We can similarly right align using {: class="right" }. In both cases Wren will automatically add appropriate margins so that the page doesn’t get too cluttered. If you’re using a thin form-factor the UI will also respond by switching off text-wrapping.

From one medium to another, embedding a video from an external source like

is as simple as

{% include video-player.html site="YouTube" id="T1itpPvFWHI" alt="Jekyll Intro" %}

where T1itpPvFWHI is the video ID in the YouTube URL. This isn’t restricted to YouTube either; it works with Twitch, Vimeo, and more!


  1. It adds an asterisk after the date when a post’s been modified and the date of modification appears on hover. 

  2. Which you’ve already seen, but there’s another one!