-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtag.html
More file actions
25 lines (24 loc) · 749 Bytes
/
Copy pathtag.html
File metadata and controls
25 lines (24 loc) · 749 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
---
layout: default
permalink: /tag/
---
<div class="col-md-9 col-content">
{% for tag in site.tags%}
<div class="panel panel-pithy tag" id="{{tag.first}}">
<div class="panel-heading">{{tag.first}}</div>
<div class="panel-body">
{% for post in tag.last %}
<div class="col-md-3 post">
<a href="{{ post.url | prepend: site.baseurl}}">
<p class="post-date"><i class="fa fa-calendar-o"></i>{{post.date | date: "%Y-%m-%d"}}</p>
<p class="post-title">{{post.title}}</p>
</a>
</div>
{% endfor %}
</div>
</div>
{% endfor %}
</div>
<div class="col-md-3 col-sidebar">
{% include sidebar_tags.html %}
</div>