robhorrigan / blog

WIP

Home Page:https://robhorrigan.github.io/blog

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Blog of Rob Horrigan

A hugo blog site hosted on Github pages. Updates deployed via Wercker CI.

Install Hugo

brew update && brew install hugo

Build

hugo

Run server with Ghostwriter theme

hugo server -t ghostwriter

Create a new post

hugo new post/hello-world.md

Create a new page

hugo new page/about.md

Create a new project

hugo new project/todo.md

Code Snippets with Google Code-prettify

To embed a code snippet, just wrap code in a <pre> tag with class="prettyprint linenums"

<pre class="prettyprint linenums">
module.exports = function () {
  var element = document.createElement('h1');

  element.innerHTML = 'Hello world!';

  return element;
};
</pre>

About

WIP

https://robhorrigan.github.io/blog


Languages

Language:CSS 59.9%Language:HTML 31.5%Language:JavaScript 8.6%