summaryrefslogtreecommitdiff
path: root/_layouts/archive.html
diff options
context:
space:
mode:
Diffstat (limited to '_layouts/archive.html')
-rw-r--r--_layouts/archive.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/_layouts/archive.html b/_layouts/archive.html
new file mode 100644
index 0000000..6412273
--- /dev/null
+++ b/_layouts/archive.html
@@ -0,0 +1,23 @@
+---
+layout: default
+---
+<div class="wrapper">
+<div class="page">
+
+ <header class="post-header">
+ <h1 class="post-title">Posts in "{{ page.title | capitalize }}"</h1>
+ </header>
+
+ {% include page_divider.html %}
+
+ <article class="post-content">
+ <ul class="posts-list">
+ {% for post in page.posts %}
+ <li><strong><a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></strong><span class="post-date"> - {{ post.date | date: "%B %-d, %Y" }}</span></li>
+ {% endfor %}
+ </ul>
+ </article>
+
+</div>
+</div>
+<br>