1
0
Fork 0
jekyll-diary/all/index.html

26 lines
594 B
HTML

---
layout: default
title: index
---
<header>
<h1>{{ site.title }}</h1>
<h2>{{ site.subtitle }}</h2>
<nav>
<a href="../" class="page_number">All posts</a>
</nav>
</header>
<main>
{% for post in site.posts %}
<article>
<h1 title="Posted on {{ post.date | date: "%B %d, %Y" }}">{{ post.date | date: "<span>%d</span><span>%B</span><span>%Y</span>" }}</h1><!-- post.title || -->
<div class="content">
{{ post.content }}
</div>
</article>
{% endfor %}
</main>
<footer>
<nav>
<span class="page_number">That's all my diary posts. :)</span>
</nav>
</footer>