diff options
author | Geert Hauwaerts <geert@hauwaerts.be> | 2015-02-12 19:12:22 +0100 |
---|---|---|
committer | Geert Hauwaerts <geert@hauwaerts.be> | 2015-02-12 19:12:22 +0100 |
commit | 76820ed6ae9a96e97c9cac54f8aec16bab694cfb (patch) | |
tree | 190febcc1951063b05455135faabbb125b31a27f /_layouts | |
parent | a87582423462d55c97d76b57778caf97dcd97d69 (diff) | |
parent | 23d0b1ebd65f423ba8a78ace70cdb150d7be8efe (diff) | |
download | irssi.github.io-76820ed6ae9a96e97c9cac54f8aec16bab694cfb.zip |
Merge pull request #2 from nkuttler/nkuttler
Various updates to the site | I'll just merge since it seems sensible and I don't know of a way to preview the content before applying the PR. (let me know if you know how)
Diffstat (limited to '_layouts')
-rw-r--r-- | _layouts/default.html | 12 | ||||
-rw-r--r-- | _layouts/home.html | 1 | ||||
-rw-r--r-- | _layouts/post.html | 5 |
3 files changed, 15 insertions, 3 deletions
diff --git a/_layouts/default.html b/_layouts/default.html index 1ab31f9..887ef16 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -7,7 +7,17 @@ <div class="page-content"> <div class="container"> - {{ content }} + <div class="col-xs-12 col-md-8"> + {{ content }} + </div> + <div class="col-xs-12 col-md-4"> + <h2>What's this?</h2> + <p> + You are visiting the official website for the IRC + client Irssi, for more information see the about + section. + </p> + </div> </div> </div> diff --git a/_layouts/home.html b/_layouts/home.html index 9a2976a..81451b6 100644 --- a/_layouts/home.html +++ b/_layouts/home.html @@ -6,6 +6,7 @@ layout: default {% for post in paginator.posts %} <h2><a href="{{ post.url }}">{{ post.title }}</a></h2> + {% include postmeta.html node=post %} {{ post.content | markdownify }} {% endfor %} diff --git a/_layouts/post.html b/_layouts/post.html index aa390ea..8e1bfd0 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -2,5 +2,6 @@ layout: default --- -<h2>{{ page.title }}</h2> -{{ page.content|markdownify }} +<h1>{{ page.title }}</h1> +{% include postmeta.html node=page %} +{{ page.content | markdownify }} |