removing gh-pages branch and putting everything in master
This commit is contained in:
21
archive.html
Normal file
21
archive.html
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
title: Archive
|
||||
permalink: "/archive/"
|
||||
search: exclude
|
||||
related_pages: none
|
||||
---
|
||||
<div class="page-archive">
|
||||
{% for post in site.posts %}
|
||||
{% assign post_month_year = post.date | date: "%B %Y" %}
|
||||
{% assign newer_post_month_year = post.next.date | date: "%B %Y" %}
|
||||
{% if post_month_year != newer_post_month_year %}
|
||||
<h3 class="section-header-archive">
|
||||
{{ post_month_year }}
|
||||
</h3>
|
||||
{% endif %}
|
||||
<p>
|
||||
<a href="{{ post.url | prepend:site.baseurl}}" class="post-title-archive">{{ post.title }}</a>
|
||||
<small class="text-muted">{{ post.date | date_to_string }}</small>
|
||||
</p>
|
||||
{% endfor %}
|
||||
</div>
|
Reference in New Issue
Block a user