Layouts

The bread and butter of any theme. Below you’ll find the layouts included with Minimal Mistakes, what they look like and the type of content they’ve been built for.

Default Layout

The base layout all other layouts inherit from. There’s not much to this layout apart from pulling in several _includes:

  • <head> elements
  • masthead navigation links
  • {{ content }}
  • page footer
  • scripts

Note: You won’t ever assign this layout directly to a post or page. Instead all other layouts will build off of it by setting layout: default in their YAML Front Matter.

Compress Layout

A Jekyll layout that compresses HTML in pure Liquid.

Single Layout

The layout you’ll likely use the most — sidebar and main content combo.

Includes:

  • Optional header image with caption
  • Optional header overlay (solid color/image) + text and optional “call to action” button
  • Optional social sharing links module
  • Optional comments module
  • Optional related posts module
single layout with header example single layout with comments and related posts
Image header and meta info examples for single layout

Assign with layout: single, or better yet apply as a Front Matter default in _config.yml.

Archive Layout

Essentially the same as single with markup adjustments and some modules removed.

Includes:

  • Optional header image with caption
  • Optional header overlay (solid color/image) + text and optional “call to action” button
  • List and grid views
archive layout example
List view example.

Below are sample archive pages you can easily drop into your project, taking care to rename permalink, title, or the filename to fit your site. Each is 100% compatible with GitHub Pages.

Post and page excerpts are auto-generated by Jekyll which grabs the first paragraph of text. To override this text with something more specific use the following YAML Front Matter:

excerpt: "A unique line of text to describe this post that will display in an archive listing and meta description with SEO benefits."

Grid View

Adding type=grid to the archive-single helper will display archive posts in a 4 column grid. For example to create an archive displaying all documents in the portfolio collection:

Step 1: Create a portfolio archive page (eg. _pages/portfolio-archive.html) with the following YAML Front Matter:

---
layout: archive
title: "Portfolio"
permalink: /portfolio/
author_profile: false
---

Step 2: Loop over all documents in the portfolio collection and output in a grid:

{% include base_path %}

<div class="grid__wrapper">
  {% for post in site.portfolio %}
    {% include archive-single.html type="grid" %}
  {% endfor %}
</div>

To produce something like this:

archive grid view example
Grid view example.

Note: More information on using this _include can be found under Helpers.

Taxonomy Archive

If you have the luxury of using Jekyll plugins the creation of category and tag archives is greatly simplified. Enable support for the jekyll-archives plugin with a few _config.yml settings as noted in the Configuration section.

archive taxonomy layout example

Home Page

Minimal Mistakes ships with an index.html in the root of the project for displaying recent posts.

Includes:

  • Optional header image with caption
  • Optional header overlay (solid color/image) + text and optional “call to action” button
  • Paginated posts

Post pagination is achieved by assigning layout: archive in the YAML Front Matter and including the following Liquid in the body:

<!-- start index.html body -->
{% include base_path %}

<h3 class="archive__subtitle">Recent Posts</h3>

{% for post in paginator.posts %}
  {% include archive-single.html %}
{% endfor %}

{% include paginator.html %}
<!-- end index.html body -->
home page post pagination example
Home page post pagination example.

Note: For more pagination related settings check the Configuration section.

Splash Page Layout

For full-width landing pages that need a little something extra add layout: splash to the YAML Front Matter.

Includes:

  • Optional header image with caption
  • Optional header overlay (solid color/image) + text and optional “call to action” button
  • Feature blocks (left, center, and right alignment options)

splash page layout example

Feature blocks can be assigned and aligned to the left, right, or center with a sprinkling of YAML. For full details on how to use the feature_row helper check the Content section or review a sample splash page.


Headers

To add some visual punch to a post or page, a large full-width header image can be included.

Note: Be sure to resize your header images. ~1280px is a good width if you aren’t responsively serving up images. Through the magic of CSS they will scale up or down to fill the container. If you go with something too small it will look like garbage when upscaled, and something too large will hurt performance.

single layout header image example

Place your images in the /images/ folder and add the following YAML Front Matter:

header:
  image: image-filename.jpg

For externally hosted images include the full image path instead of just the filename:

header:
  image: http://some-site.com/image.jpg

To include a caption or attribution for the image:

header:
  image: unsplash-image-1.jpg
  caption: "Photo credit: [**Unsplash**](https://unsplash.com)"

ProTip: Captions written in Markdown are supported, so feel free to add links, or style text. Just be sure to wrap it in quotes.

Header Overlay

To overlay text on top of a header image you have a few more options:

Name Description Default
overlay_image Header image you’d like to overlay. Same rules as header.image from above.  
overlay_filter Color/opacity to overlay on top of the header image eg: 0.5 or rgba(255, 0, 0, 0.5).  
excerpt Auto-generated page excerpt is added to the overlay text or can be overridden.  
cta_label Call to action button text label. more_label in UI Text data file
cta_url Call to action button URL.  

With this YAML Front Matter:

excerpt: "This post should display a **header with an overlay image**, if the theme supports it."
header:
  overlay_image: unsplash-image-1.jpg
  caption: "Photo credit: [**Unsplash**](https://unsplash.com)"
  cta_label: "More Info"
  cta_url: "https://unsplash.com"

You’d get a header image overlaid with text and a call to action button like this:

single layout header overlay example

You also have the option of specifying a solid background-color to use instead of an image.

single layout header overlay with background fill

excerpt: "This post should display a **header with a solid background color**, if the theme supports it."
header:
  overlay_color: "#333"

You can also specifying the opacity (between 0 and 1) of a black overlay like so:

transparent black overlay

excerpt: "This post should [...]"
header:
  overlay_image: unsplash-image-1.jpg
  overlay_filter: 0.5 # same as adding an opacity of 0.5 to a black background
  caption: "Photo credit: [**Unsplash**](https://unsplash.com)"
  cta_label: "More Info"
  cta_url: "https://unsplash.com"

Or if you want to do more fancy things, go full rgba:

transparent red overlay

excerpt: "This post should [...]"
header:
  overlay_image: unsplash-image-1.jpg
  overlay_filter: rgba(255, 0, 0, 0.5)
  caption: "Photo credit: [**Unsplash**](https://unsplash.com)"
  cta_label: "More Info"
  cta_url: "https://unsplash.com"

The space to the left of a page’s main content is blank by default, but has the ability to show an author profile (name, short biography, social media links), custom content, or both.

Author Profile

Add author_profile: true to a post or page’s YAML Front Matter.

single layout example

Better yet, enable it with Front Matter Defaults set in _config.yml.

defaults:
  # _posts
  - scope:
      path: ""
      type: posts
    values:
      author_profile: true

Note: To disable the author sidebar profile for a specific post or page, add author_profile: false to the YAML Front Matter instead.

The theme comes pre-built with a selection of links for the most common social media networks. These are all optional and can be assigned in _config.yml.

To add more links you’ll need to crack open _includes/author-profile.html and make some edits.

Inside of <ul class="author__urls"> you’ll find <li> elements wrapped in Liquid conditionals. These represent each of the possible links you can currently add to the sidebar.

{% if author.twitter %}
  <li><a href="https://twitter.com/{{ author.twitter }}"><i class="fa fa-fw fa-twitter-square" aria-hidden="true"></i> Twitter</a></li>
{% endif %}

To add a new link you’ll need three things:

  1. Destination URL
  2. Font Awesome icon (fa- class)
  3. Label for the link

It’s up to you if you want to wrap it in a {% if %} ... {% endif %}conditional and add variables to _config.yml. If you don’t plan to change it then hard-coding the strings is perfectly acceptable.

Let’s run through how you’d add a new link that points to a Reddit profile. Starting with the three things from above:

  1. https://www.reddit.com/user/username
  2. fa-reddit
  3. Reddit

And plug them into the appropriate locations:

<li><a href="[1]"><i class="fa fa-fw [2]" aria-hidden="true"></i> [3]</a></li>

To end up with:

<li><a href="https://www.reddit.com/user/username"><i class="fa fa-fw fa-reddit" aria-hidden="true"></i> Reddit</a></li>

Reddit link in author profile

To add a touch of color to the default black (#000) icon a few more steps are necessary.

Start by opening /assets/_scss/_utilities.scss to the icon section (it’s near the bottom). You’ll want to nest a new class beneath .social-icons that matches the one used to declare the Font Awesome icon. In our case .fa-reddit.

Simply add a color declaration and the corresponding hex code and recompile main.css following the steps outlined in the stylesheet documentation.

.social-icons {
  
  .fa-reddit {
    color: #ff4500;
  }
}

Reddit link in author profile with color

ProTip: For bonus points you can add it as a Sass $variable that you set in _variables.scss like the other “brand” colors.

Please please please don’t submit pull requests adding in support for “missing” social media links. I’m trying to keep things down to the minimum (hence the theme’s name) and have no interest in merging such PRs :expressionless:.

Custom Sidebar Content

Blocks of content can be added by using the following under sidebar:

Name Description
title Title or heading.
image Image path placed in /images/ folder or an external URL.
image_alt Alternate description for image.
text Text. Markdown is allowed.

Multiple blocks can also be added by following the example below:

sidebar:
  - title: "Title"
    image: http://placehold.it/350x250
    image_alt: "image"
    text: "Some text here."
  - title: "Another Title"
    text: "More text here."
custom sidebar content example
Example of custom sidebar content added as YAML Front Matter.

Note: Custom sidebar content added to a post or page’s YAML Front Matter will appear below the author profile if enabled with author_profile: true.


The single layout has an option to enable social links at the bottom of posts for sharing on Twitter, Facebook, Google+, and LinkedIn. Similar to the links found in the author sidebar, the theme ships with defaults for the most common social networks.

default social share link buttons

To enable these links add share: true to a post or page’s YAML Front Matter or use a default in your _config.yml to apply more globally.

If you’d like to add, remove, or change the order of these default links you can do so by editing _includes/social-share.html.

Let’s say you wanted to replace the Google+ button with a Reddit one. Simply replace the HTML with the following:

<a href="https://www.reddit.com/submit?url={{ base_path }}{{ page.url }}&title={{ page.title }}" class="btn" title="{{ site.data.ui-text[site.locale].share_on_label }} Reddit"><i class="fa fa-fw fa-reddit" aria-hidden="true"></i><span> Reddit</span></a>

The important parts to change are:

  1. Share point URL *eg. https://www.reddit.com/submit?url=
  2. Link title
  3. Font Awesome icon (fa- class)
  4. Link label

Reddit social share link button

To change the color of the button use one of the built in utility classes. Or you can create a new button class to match whatever color you want.

Under the $social color map in assets/_scss/_buttons.scss simply add a name (this will be appened to btn--) that matches the new button class. In our case reddit ~> .btn--reddit.

$social:
(facebook, $facebook-color),
(twitter, $twitter-color),
(google-plus, $google-plus-color),
(linkedin, $linkedin-color);
(reddit, #ff4500;)

ProTip: For bonus points you can add it as a Sass $variable that you set in _variables.scss like the other “brand” colors.

Add the new .btn--reddit class to the <a> element from earlier, compile main.css and away you go.

<a href="https://www.reddit.com/submit?url={{ base_path }}{{ page.url }}&title={{ page.title }}" class="btn btn--reddit" title="{{ site.data.ui-text[site.locale].share_on_label }} Reddit"><i class="fa fa-fw fa-reddit" aria-hidden="true"></i><span> Reddit</span></a>

Reddit social share link button

Opdateret: