summaryrefslogtreecommitdiffstats
path: root/tozt/layouts/posts.html
diff options
context:
space:
mode:
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 }}}