diff options
author | Brian Picciano <bgp2396@bellsouth.net> | 2013-10-16 20:20:50 -0400 |
---|---|---|
committer | Brian Picciano <bgp2396@bellsouth.net> | 2013-10-16 20:20:50 -0400 |
commit | 5405686b0ed1a6e0a9bbf34355b7e077930f4101 (patch) | |
tree | 107e93bb237a9d04e69c853df47b492175b3ce6a /_layouts/post.html | |
parent | 7a5172710b5eb93209293adfc9c773838befed62 (diff) |
using lagom theme
Diffstat (limited to '_layouts/post.html')
-rw-r--r-- | _layouts/post.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/_layouts/post.html b/_layouts/post.html new file mode 100644 index 0000000..8d28ddf --- /dev/null +++ b/_layouts/post.html @@ -0,0 +1,27 @@ +--- +layout: default +--- + +<p class="meta"> + {{ page.date | date: "%B %d, %Y" }} + <a href="/"> + <i class="home icon-home"></i> + </a> +</p> + +<h1 class="title">{{ page.title }}</h1> + +<div id="post"> + {{ content }} +</div> + +<div id="related"> + <h3>Related Posts</h3> + <ul class="posts"> + {% for post in site.related_posts limit:3 %} + <li> + <span>{{ post.date | date_to_string }} »</span> <a href="{{ post.url }}">{{ post.title }}</a> + </li> + {% endfor %} + </ul> +</div>
\ No newline at end of file |