mirror of
https://github.com/minoplhy/crappy-reverie.git
synced 2024-11-14 21:36:57 +00:00
commit
15ed2ba8a6
@ -32,6 +32,7 @@
|
|||||||
<a href="{{ site.baseurl }}/getting-started">Getting Started</a>
|
<a href="{{ site.baseurl }}/getting-started">Getting Started</a>
|
||||||
<a href="{{ site.baseurl }}/search">Search</a>
|
<a href="{{ site.baseurl }}/search">Search</a>
|
||||||
<a href="{{ site.baseurl }}/about">About</a>
|
<a href="{{ site.baseurl }}/about">About</a>
|
||||||
|
<a href="{{ site.baseurl }}/archive">Archive</a>
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
</div>
|
</div>
|
||||||
|
33
_pages/archive.md
Normal file
33
_pages/archive.md
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
---
|
||||||
|
layout: page
|
||||||
|
permalink: /archive/
|
||||||
|
title: Posts Archive
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
<div id="archives">
|
||||||
|
<section id="archive">
|
||||||
|
<h3>Most Recent Posts</h3>
|
||||||
|
{%for post in site.posts %}
|
||||||
|
{% unless post.next %}
|
||||||
|
<ul class="this">
|
||||||
|
{% else %}
|
||||||
|
{% capture month %}{{ post.date | date: '%B %Y' }}{% endcapture %}
|
||||||
|
{% capture nmonth %}{{ post.next.date | date: '%B %Y' }}{% endcapture %}
|
||||||
|
{% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
|
||||||
|
{% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
|
||||||
|
{% if year != nyear %}
|
||||||
|
</ul>
|
||||||
|
<h2 style="text-align:left;">{{ post.date | date: '%Y' }}</h2>
|
||||||
|
<ul class="past">
|
||||||
|
{% endif %}
|
||||||
|
{% if month != nmonth %}
|
||||||
|
<h3 style="text-align:left;">{{ post.date | date: '%B %Y' }}</h3>
|
||||||
|
{% endif %}
|
||||||
|
{% endunless %}
|
||||||
|
<p><b><a href="{{ site.baseurl }}{{ post.url }}">{% if post.title and post.title != "" %}{{post.title}}{% else %}{{post.excerpt |strip_html}}{%endif%}</a></b> - {% if post.date and post.date != "" %}{{ post.date | date: "%e %B %Y" }}{%endif%}</p>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
<h3>Oldest Posts</h3>
|
||||||
|
</section>
|
||||||
|
</div>
|
Loading…
Reference in New Issue
Block a user