📐 Jekyll theme for building a personal site, blog, project documentation, or portfolio.
Go to file
2013-06-03 13:59:08 -04:00
_includes Add Microformats goodness 2013-05-29 08:24:26 -04:00
_layouts Fix typo in h1 2013-06-03 13:59:08 -04:00
_posts Fix update date 2013-05-31 13:59:45 -04:00
assets Add button styles and "view all articles" link to home 2013-05-31 11:52:02 -04:00
images Add button styles and "view all articles" link to home 2013-05-31 11:52:02 -04:00
.gitignore Initial commit 2013-05-24 10:25:31 -04:00
_config.yml Add button styles and "view all articles" link to home 2013-05-31 11:52:02 -04:00
about.md Change about text. 2013-05-28 11:31:06 -04:00
articles.md Initial commit 2013-05-24 10:25:31 -04:00
favicon.ico Minor cleanup 2013-05-24 12:04:43 -04:00
favicon.png Add favicons and iOS icons 2013-05-28 10:43:55 -04:00
feed.xml Fix update date 2013-05-31 13:59:45 -04:00
Gemfile Initial commit 2013-05-24 10:25:31 -04:00
index.md Add unique page description 2013-05-24 14:35:46 -04:00
LICENSE Add MIT license 2013-05-28 11:43:29 -04:00
README.md Fix typo 2013-05-31 11:21:51 -04:00
sitemap.xml Initial commit 2013-05-24 10:25:31 -04:00
theme-setup.md Add Pygments cod highlighting 2013-05-28 09:00:43 -04:00

Minimal Mistakes

Jekyll is pretty rad and figured releasing a cleaned up version of my setup as a theme to hack up and use would be cool. So here be that theme --- I call it Minimal Mistakes, a responsive Jekyll theme with editorial tendencies.

Minimal Mistakes is all about:

  • Responsive templates. Looking good on mobile, tablet, and desktop.
  • Gracefully degrading in older browsers. Compatible with Internet Explorer 8+ and all modern browsers.
  • Minimal embellishments. Content first --- other widget nonsense never.
  • Large feature images for posts and pages.
  • Simple and clear permalink structure (ie: domain.com/category/post-title)

screenshot of Minimal Mistakes theme

General notes and suggestions for customizing Minimal Mistakes.

Basic Setup

  1. Install Jekyll if you haven't already.
  2. Fork the Minimal Mistakes repo
  3. Make it your own and customize, customize, customize.

Preview the Theme

minimal-mistakes/
├── _includes
|    ├── author-bio.html  //bio stuff goes here
|    ├── chrome-frame.html  //displays on IE8 and less
|    ├── footer.html  //site footer
|    ├── head.html  //site head
|    ├── navigation.html //site top nav
|    └── scripts.html  //jQuery, plugins, GA, etc.
├── _layouts
|    ├── home.html  //homepage layout
|    ├── page.html  //page layout
|    ├── post-index.html  //post listing layout
|    └── post.html  //post layout
├── _posts
├── assets
|    ├── css  //preprocessed less styles. good idea to minify
|    ├── img  //images and graphics used in css and js
|    ├── js
|    |   ├── main.js  //jQuery plugins and settings
|    |   └── vendor  //all 3rd party scripts
|    └── less 
├── images  //images for posts and pages
├── about.md  //about page
├── articles.md  //lists all posts from latest to oldest
└── index.md  //homepage. lists 5 most recent posts

Customization

_config.yml

Variables you want to update are: site name, description, url, owner info, and your Google Anayltics tracking id and webmaster tool verifications. Most of these variables are used in the .html files found in _includes if you need to add or remove anything.

_includes

For the most part you can leave these as is since the author/owner details are pulled from _config.yml. That said you'll probably want to customize the page links in navigation.html and copyright stuff in footer.html to your liking.

Adding Posts and Pages

There are two main content layouts: post.html (for posts) and page.html (for pages). Both have large feature images that span the full-width of the screen, and both are meant for text heavy blog posts (or articles).

Feature Images

A good rule of thumb is to keep feature images nice and wide so you don't push the body text too far down. An image cropped around around 1024 x 512 pixels will keep file size down with an acceptable resolution for most devices. On my personal site I use Picturefill to serve the same image responsively in four different flavors (small, medium, large, and extra large). In the interest of keeping things simple with this theme I left that script out, but you can certainly add it back in or give Adaptive Images a try.

The two layouts make the assumption that the feature images live in the images folder. To add a feature image to a post or page just include the filename in the front matter like so.

image:
  feature: feature-image-filename.jpg
  thumb: thumbnail-image.jpg #keep it square 200x200 px is good

Thumbnails for OG and Twitter Cards

Post and page thumbnails work the same way. These are used by Open Graph and Twitter Cards meta tags found in head.html. If you don't assign a thumbnail the default graphic (default-thumb.png) is used. I'd suggest changing this to something more meaningful --- your logo or avatar are good options.

Table of Contents

Any article or page that you want a table of contents to render insert the following HTML in your post before the actual content. Kramdown will take care of the rest and convert all headlines into a contents list.

PS: The TOC is hidden on small devices because I haven't gotten around to optimizing it. For now it only shows on tablets and desktop viewports...

<section id="table-of-contents" class="toc">
  <header>
    <h3 class="delta">Contents</h3>
  </header>
<div id="drawer" markdown="1">
*  Auto generated table of contents
{:toc}
</div>
</section><!-- /#table-of-contents -->

Videos

Video embeds are responsive and scale with the width of the main content block with the help of FitVids.

Not sure if this only effects Kramdown or if it's an issue with Markdown in general. But adding YouTube video embeds causes errors when building your Jekyll site. To fix add a space between the <iframe> tags and remove allowfullscreen. Example below:

<iframe width="560" height="315" src="http://www.youtube.com/embed/PWf4WUoMXwg" frameborder="0"> </iframe>

License

This is MIT with no added caveats, so feel free to use this Jekyll theme on your site without linking back to me or using a disclaimer.

If you'd like give me credit somewhere on your blog or tweet a shout out to @mmistakes, that would be pretty sweet.