diff options
author | Michael McVady <femtonaut@gmail.com> | 2021-11-18 14:37:19 -0500 |
---|---|---|
committer | Michael McVady <femtonaut@gmail.com> | 2021-11-18 14:37:19 -0500 |
commit | 659b6cdd8530e157cb8b5ea688933f13e3c6c12e (patch) | |
tree | c61765e229ae6b3e43acae724fa30e2dcd0805d6 /assets/post.html | |
parent | 4f28d4e17d4eddeb7b27ccceee80a92233a7f0c7 (diff) |
Template posts
Diffstat (limited to 'assets/post.html')
-rw-r--r-- | assets/post.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/assets/post.html b/assets/post.html new file mode 100644 index 0000000..80934c6 --- /dev/null +++ b/assets/post.html @@ -0,0 +1,13 @@ +<!-- begin post: {{ post.id }} --> +<div class="post"> +<hr class="hdiv"/> +<div class="head"> +<h2><span class="title">%s</span></h2> +<span class="date">{{ post.date_string }} <!-- {{ post.epoch }} --></span> +</div> +<div class="body"> +%s +</div> <!--body--> +<hr class="hdiv"/> +</div> +<!-- end post: {{ post.id }} --> |