summaryrefslogtreecommitdiffstats
path: root/tozt/layouts/posts.html
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-10-30 00:18:56 -0400
committerJesse Luehrs <doy@tozt.net>2013-10-30 00:18:56 -0400
commitbb0a4f4e126c05fc73d566986fd1612468f5be67 (patch)
treea3a712e0a27ea1fe41d3d6097326896afd2f53f5 /tozt/layouts/posts.html
downloadblog.tozt.net-bb0a4f4e126c05fc73d566986fd1612468f5be67.tar.gz
blog.tozt.net-bb0a4f4e126c05fc73d566986fd1612468f5be67.zip
initial commit
Diffstat (limited to 'tozt/layouts/posts.html')
-rw-r--r--tozt/layouts/posts.html40
1 files changed, 40 insertions, 0 deletions
diff --git a/tozt/layouts/posts.html b/tozt/layouts/posts.html
new file mode 100644
index 0000000..6bb7b4b
--- /dev/null
+++ b/tozt/layouts/posts.html
@@ -0,0 +1,40 @@
+---
+layout : default
+---
+<h4><span class="date">{{ page.date }}</span><span class="title">{{page.title}}</span></h4>
+<div class="content">
+ {{{ page.content }}}
+</div>
+<div class="permalink">
+ <a href="{{page.url}}">link</a>
+</div>
+<div class="tags">
+ Tags:
+ <ul>
+ {{# page.tags }}
+ {{> tags_list }}
+ {{/ page.tags }}
+ </ul>
+</div>
+<hr class="clear">
+<div class="pagination">
+ <ul>
+ {{# page.previous }}
+ <li class="prev"><a href="{{ url }}" title="{{ title }}">&larr; Previous</a></li>
+ {{/ page.previous }}
+ {{^ page.previous }}
+ <li class="prev disabled"><a>&larr; Previous</a></li>
+ {{/ page.previous }}
+
+ <li><a href="{{urls.base_path}}archive">Archive</a></li>
+
+ {{# page.next }}
+ <li class="next"><a href="{{ url }}" title="{{ title }}">Next &rarr;</a></li>
+ {{/ page.next }}
+ {{^ page.next }}
+ <li class="next disabled"><a>Next &rarr;</a>
+ {{/ page.next }}
+ </ul>
+</div>
+<hr>
+{{{ widgets.comments }}}