Prune post body which only shows up in GitHub Pages

wat
This commit is contained in:
R. Tyler Croy 2018-12-08 19:23:53 -08:00
parent fe3cf5b4b7
commit 34115e29a5
No known key found for this signature in database
GPG Key ID: E5C92681BEF6CEA2
1 changed files with 3 additions and 1 deletions

View File

@ -4,6 +4,8 @@ layout: default
<h2>{{ page.tag }}</h2>
<ul>
{% for post in site.tags[page.tag] %}
<li><a href="{{ post.url }}">{{ post.title }}</a> ({{ post.date | date_to_string }} | Tags: {{ post | tags }})</li>
<li>
<a href="{{ post.url }}">{{ post.title }}</a> ({{ post.date | date_to_string }}
</li>
{% endfor %}
</ul>