James Peret's blog. Built with Jekyll and the Mikey theme.

post.html 377B

12345678910111213141516
  1. ---
  2. layout: default
  3. ---
  4. <div class="post">
  5. <header class="post-header">
  6. <h1 class="post-title">{{ page.title }}</h1>
  7. <p class="post-meta">{{ page.date | date: "%b %-d, %Y" }}{% if page.author %} • {{ page.author }}{% endif %}{% if page.meta %} • {{ page.meta }}{% endif %}</p>
  8. </header>
  9. <article class="post-content">
  10. {{ content }}
  11. </article>
  12. </div>