-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathposts-by-categories.html
39 lines (36 loc) · 1.17 KB
/
posts-by-categories.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
---
layout: page
title: "Posts by category"
description: "Socialgorithm's Blog! See all of our events, announcements..."
---
<div class="container-fluid index">
<div class="row index all-posts">
<h1 class="header author-header">{{ site.author_name }}</h1>
<h2 class="header" itemprop="headline">
<small class="pull-right">
Group by
<div class="dropdown btn-group">
<button class="btn btn-categories dropdown-toggle btn-xs" type="button" data-toggle="dropdown">Categories
<span class="caret"></span>
</button>
<ul class="dropdown-menu">
<li><a href="{{ site.baseurl }}/blog/">Years</a></li>
</ul>
</div>
</small>
</h2>
{% for category in site.categories %}
<div class="col-md-12 content-panel articles">
<h2 id="{{ category | first }}-ref">{{ category | first | capitalize }}</h2>
{% for posts in category %}
{% for post in posts %}
{% include
post_list_item.html
post=post
%}
{% endfor %}
{% endfor %}
</div>
{% endfor %}
</div>
</div>