summaryrefslogtreecommitdiffstats
path: root/_includes/archive.html
diff options
context:
space:
mode:
Diffstat (limited to '_includes/archive.html')
-rw-r--r--_includes/archive.html21
1 files changed, 0 insertions, 21 deletions
diff --git a/_includes/archive.html b/_includes/archive.html
deleted file mode 100644
index 1b8c9c9..0000000
--- a/_includes/archive.html
+++ /dev/null
@@ -1,21 +0,0 @@
- <div class="articles">
- <table class="posts-table">
-
- {% assign posts = site.archive | sort: 'date' | reverse %}
- {% for post in posts limit: include.limit %}
-
- <tr>
- <td class="posts-td posts-td-link">
- <a href="{{ post.url }}" class="link-decor-none">{{ post.title }}</a>
- </td>
- <td class="posts-td posts-td-time">
- <span class="post-meta">
- <time datetime="{{ post.date }}">{{ post.date | date: "%Y-%m-%d" }}</time>
- </span>
- </td>
- </tr>
-
- {% endfor %}
-
- </table>
- </div>