summaryrefslogtreecommitdiff
path: root/_includes/themes/tom/post.html
diff options
context:
space:
mode:
Diffstat (limited to '_includes/themes/tom/post.html')
-rw-r--r--_includes/themes/tom/post.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/_includes/themes/tom/post.html b/_includes/themes/tom/post.html
new file mode 100644
index 0000000..088407a
--- /dev/null
+++ b/_includes/themes/tom/post.html
@@ -0,0 +1,19 @@
+<div id="post">
+ <h1>{{ page.title }}</h1>
+ <p class="meta">
+ {{ page.date | date_to_long_string }}
+ {% if page.location %}{{ page.location }}{% endif %}
+ </p>
+ {{ content }}
+</div>
+
+<div id="related">
+ <h2>Related Posts</h2>
+ <ul class="posts">
+ {% for post in site.related_posts limit:3 %}
+ <li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}">{{ post.title }}</a></li>
+ {% endfor %}
+ </ul>
+</div>
+
+{% include JB/comments %} \ No newline at end of file