forked from play-with-docker/play-with-docker.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
alacart.html
28 lines (25 loc) · 771 Bytes
/
alacart.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
---
layout: page
---
<div class="tags-expo">
<div class="tags-expo-list">
{% assign categories = site.categories %}
{% for cat in categories %}
<a href="#{{ cat[0] | slugify }}" class="post-tag">{{ cat[0] }}</a>
{% endfor %}
</div>
<hr/>
<div class="tags-expo-section">
{% for cat in categories %}
<h2 id="{{ cat[0] | slugify }}">{{ cat[0] | capitalize }}</h2>
<ul class="tags-expo-posts">
{% for post in cat[1] %}
<li>
<a class="post-title" href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
<small class="post-date">( {% for tag in post.tags %}<span class="post-tag">{{ tag | capitalize }}</span>{% endfor %})</small>
</li>
{% endfor %}
</ul>
{% endfor %}
</div>
</div>