use the Jekyll pages information to create the menu
[web.git] / _layouts / post.html
1 ---
2 layout: default
3 ---
4 <div class="post">
5
6   <header class="post-header">
7     <h1 class="post-title">{{ page.title }}</h1>
8     <p class="post-meta">{{ page.date | date: "%b %-d, %Y" }}{% if page.author %} • {{ page.author }}{% endif %}{% if page.meta %} • {{ page.meta }}{% endif %}</p>
9   </header>
10
11   <article class="post-content">
12     {{ content }}
13   </article>
14
15 </div>