aboutsummaryrefslogtreecommitdiff
path: root/_layouts/post.html
blob: 18debe58e603308b4a66be277fc722dc5fd5a78a (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
layout: default
---
<article>
  <section class="header">
    {{ site.t.posted_on[page.lang] }} {{ page.date | date: site.t.date_format[page.lang] }}
  </section>
  {% if page.updated_at %}
    <section class="header">
      {{ site.t.updated_at[page.lang] }} {{ page.updated_at | date: site.t.date_format[page.lang] }}
    </section>
  {% endif %}
  <section>
    {{ content }}
  </section>
  <section class="post-footer">
    <p>
      {% include public-inbox.html %}
    </p>
  </section>
</article>