-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogs.html
53 lines (47 loc) · 1.59 KB
/
blogs.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
layout: pageminimal
title: Blogs Index
permalink: /blogs/index.html
title: Blog Index
tags: blogs
description: "An archive of blogs."
---
<!-- <ul class="tag-box inline">
{% assign tags_list = site.categories %}
{% if tags_list.first[0] == null %}
{% for tag in tags_list %}
{% if {{tag[0]}} != "photo" %}
<li><a href="#{{ tag }}">{{ tag | capitalize }} <span>{{ site.tags[tag].size }}</span></a></li>
{% endif %}
{% endfor %}
{% else %}
{% for tag in tags_list %}
{% if {{tag[0]}} != "photo" %}
<li><a href="#{{ tag[0] }}">{{ tag[0] | capitalize }} <span>{{ tag[1].size}}</span></a></li>
<div>
<span>{{ tag[2 }}</span>
</div>
{% endif %}
{% endfor %}
{% endif %}
{% assign tags_list = nil %}
</ul> -->
{% for tag in site.categories %}
{% if {{tag[0]}} != "photo" %}
<!-- <h2 id="{{ tag[0] }}" style="color: #c91b26">
{{ tag[0] | capitalize }}
</h2> -->
<ul class="post-list">
{% assign pages_list = tag[1] %}
{% for post in pages_list %}
{% if post.title != null %}
{% if group == null or group == post.group %}
<li><a href="{{ site.url }}{{ 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></span></li>
{% endif %}
{% endif %}
{% endfor %}
{% assign pages_list = nil %}
{% assign group = nil %}
</ul>
{% endif %}
{% endfor %}