post.html 334 B

12345678910111213141516171819202122
  1. ---
  2. layout: default
  3. ---
  4. <section class="post">
  5. <header>
  6. <h1>
  7. {{ page.title }}
  8. </h1>
  9. <p class="post-meta">
  10. {% if site.author.name %}
  11. by {{ site.author.name }}<br>
  12. {% endif %}
  13. {{ page.date | date: "%b %-d, %Y" }}
  14. </p>
  15. </header>
  16. <article>
  17. {{ content }}
  18. </article>
  19. </section>