diff options
Diffstat (limited to '_layouts/post.html')
-rw-r--r-- | _layouts/post.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/_layouts/post.html b/_layouts/post.html new file mode 100644 index 0000000..629e02f --- /dev/null +++ b/_layouts/post.html @@ -0,0 +1,16 @@ +--- +layout: default +--- +<article> + <section class="header"> + {{ site.t.posted_on[page.lang] }} {{ page.date | date: site.t.date_format[page.lang] }} + </section> + <section> + {{ content }} + </section> + <section> + <p> + {% include public-inbox.html %} + </p> + </section> +</article> |