forked from victorvoid/space-jekyll-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
series.html
31 lines (31 loc) · 981 Bytes
/
series.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
layout: minimal
title: "dlehgo14__POSTS"
permalink: /series/index.html
image: '/assets/img/series.png'
description: "Take a look at my posts..."
---
{% include analytics.html %}
<div class="my-title">
<h2>Posts</h2>
</div>
{% for tag in site.categories %}
<span class="tag-title" id="{{ tag[0] | slugify }}">{{ tag[0] | capitalize }}</span>
<ul class="post-list">
{% assign pages_list = tag[1] %}
{% for post in pages_list reversed %}
{% if post.title != null %}
{% if group == null or group == post.group %}
<li>
<a title="Post's my title" href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}
<span class="entry-date">
<time datetime="{{ post.date | date_to_xmlschema }}" itemprop="datePublished">{{ post.date | date: "%B %d, %Y" }}</time>
</a>
</li>
{% endif %}
{% endif %}
{% endfor %}
{% assign pages_list = nil %}
{% assign group = nil %}
</ul>
{% endfor %}