Awesome
mrkiffie.com
This is my static site generator. It uses metalsmith to do most of the heavy lifting. There are a few custom plugins and handlebar helpers to do the finishing touches.
Installation
git clone https://github.com/mrkiffie/mrkiffie.com.git mrkiffie.com
cd mrkiffie.com
npm install
npm start
npm start
Starts a development server instance on http://localhost:7000
Dev features
- uses
nodemon
to watch files used for the build process and will restart when file changes are detected - changes to source files trigger a rebuild
livereload
support
npm run build
Generates a clean build of the static site from scratch
Build features
- fingerprints the asset files - useful for aggressive caching and cache busting.
npm run lint
Runs all the javascript files through eslint
npm run deploy
Creates a clean build and then publishes the changes to the gh-pages
branch.
Requires the deploy.sh
script from git-directory-deploy to be installed
Source files
The source files are structured as described by the following tree
src/
├── assets/
│ ├── css/ // styles css and less
│ ├── img/
│ └── js/ // javascript files
├── content/
│ ├── posts/
│ │ ├── <year>/ // these contain posts in markdown organized by year
│ ├── 404.md // customizable 404
│ ├── about.md // example of a page
│ └── site.json // contains site config meta data, e.g. title, links, etc.
├── layouts
│ ├── partials
│ │ ├── footer.hbs
│ │ ├── header.hbs
│ │ └── html-head.hbs
│ ├── blog-index.hbs
│ ├── blog-post.hbs
│ ├── index.hbs
│ └── offline.hbs // custom offline template
├── static // static asset that should be in the root
│ └── favicon.ico
├── manifest.json // manifest for web apps
└── service-worker.js // service worker to enable offline access to previously accessed content
Frontmatter
Certain frontmatter has special value to the build system.
Example list page
---
title: Writings
layout: blog-index.hbs
listing: true
---
title
is the title used in the<title>
tag and the main heading (<h1>
).layout
specifies the layout template to use - relative to thelayouts
dir.listing: true
is meta data used exclude links to themselves in the list. This is done at the template level.
Example blog post
---
title: "in and around my head"
date: 2007-08-01
category: "random"
layout: blog-post.hbs
styles:
- "fancy-quotes.css"
---
date
is the date that the post was created and is used in the listing and article pages.category
currently not used - historical categorization retained for possible future use.styles
is an array of additional css files to include - the base stylesheet is automatically included for each page.
Example 404
---
layout: index.hbs
permalink: false
robots: "noindex, follow"
title: 404
---
permalink: false
disables the permalink middleware. The404.md
file will be output as404.html
instead of404/index.html
.robots
allows you to overwrite robots meta tag rules - defaults toindex, follow
.
Example custom script
---
layout: offline.hbs
robots: "noindex, follow"
title: Offline
listing: true
scripts:
- offline.js
---
scripts
is an array of additional javascript files to include - the global scripts are automatically included on each page.