Initial commits and git hooks

This commit is contained in:
2018-06-18 17:49:35 -04:00
parent 211490ae47
commit 6078d6fd3a
283 changed files with 14994 additions and 8407 deletions

View File

@@ -0,0 +1,30 @@
---
layout: default
robots: noindex
---
<div class="main-post-list">
<ol class="post-list">
{% for post in paginator.posts %}
<li>
<h2 class="post-list__post-title post-title"><a href="{{ site.baseurl }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h2>
<p class="excerpt">{{ post.excerpt | strip_html }}&hellip;</p>
<div class="post-list__meta">
<time datetime="{{ post.date | date: "%Y-%m-%d %H:%M" }}" class="post-list__meta--date date">{{ post.date | date: "%-d %b %Y" }}</time>
{% if post.tags.size > 0 %}
&#8226; <span class="post-meta__tags">on {% for tag in post.tags %}<a href="{{ site.baseurl }}/tags/#{{ tag }}">{{ tag }}</a> {% endfor %}</span>
{% endif %}
</div>
<hr class="post-list__divider">
</li>
{% endfor %}
</ol>
<hr class="post-list__divider ">
{% if paginator.previous_page or paginator.next_page %}
{% include pagination.html %}
{% endif %}
</div>