summaryrefslogtreecommitdiff
path: root/data/example/templates/post.html
diff options
context:
space:
mode:
Diffstat (limited to 'data/example/templates/post.html')
-rw-r--r--data/example/templates/post.html19
1 files changed, 11 insertions, 8 deletions
diff --git a/data/example/templates/post.html b/data/example/templates/post.html
index bf0f826..732149b 100644
--- a/data/example/templates/post.html
+++ b/data/example/templates/post.html
@@ -1,8 +1,11 @@
-<div class="info">
- Posted on $date$
- $if(author)$
- by $author$
- $endif$
-</div>
-
-$body$
+<article>
+ <section class="header">
+ Posted on $date$
+ $if(author)$
+ by $author$
+ $endif$
+ </section>
+ <section>
+ $body$
+ </section>
+</article>