]> git.r.bdr.sh - rbdr/r.bdr.sh/blame - jekyll/_layouts/category_index.html
Merge branch 'hotfix/3.0.1' into develop
[rbdr/r.bdr.sh] / jekyll / _layouts / category_index.html
CommitLineData
89539330
BB
1---
2layout: default
3---
4
5<div class="content">
6 <div class="related">
a45a5d77 7 <h1>Cat: {{page.category}}</h1>
89539330
BB
8 <ul>
9 {% for post in site.categories[page.category] %}
10 <li>
b157bf19 11 <span>{{ post.date | date: "%m/%e/%Y" }}</span> <a href="{{ post.url }}">{{ post.title }}</a>
89539330
BB
12 </li>
13 {% endfor %}
14 </ul>
15 </div>
b157bf19 16</div>