-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 853 Bytes
/
index.html
File metadata and controls
27 lines (27 loc) · 853 Bytes
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
---
layout: default
---
<main role="main" class="container">
<div class="row">
<div class="col-md-8">
<div id="series">
{%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
{% for series in site.data.series %}
<h3 id="{{ series.tag_name }}">{{ series.name }}</h3>
<p>{{ series.desc }}</p>
<ul>
{% for post in site.categories[series.tag_name] %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
<small class="text-muted">{{ post.date | date: date_format }}</small>
</li>
{% endfor %}
</ul>
{% endfor %}
</div>
</div>
<aside class="col-md-4">
{%- include sidebar.html -%}
</aside>
</div>
</main>