post.html 287 B

123456789101112131415161718192021
  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 }}
  12. {% endif %}
  13. </p>
  14. </header>
  15. <article>
  16. {{ content }}
  17. </article>
  18. </section>