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

26 lines
640 B
HTML
Raw Normal View History

2014-05-30 22:52:38 +08:00
---
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>
2014-10-01 22:02:39 +08:00
<h1 title="Posted on {{ post.date | date: "%B %d, %Y" }}">{{ post.date | date: "<span>%d</span><span>%B</span><span>%Y</span>" }}<a href="{{ post.url }}">#{{ post.title }}</a></h1><!-- post.title || -->
2014-05-30 22:52:38 +08:00
<div class="content">
{{ post.content }}
</div>
</article>
{% endfor %}
</main>
<footer>
<nav>
<span class="page_number">That's all my diary posts. :)</span>
</nav>
</footer>