-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
50 lines (48 loc) · 1.53 KB
/
blog.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
40
41
42
43
44
45
46
47
48
49
50
---
layout: blog
---
<div class="row text-center">
<div class="col-md-6"><a href="/"><i class="fa fa-code fa-2x"></a></i></div>
<div class="col-md-6"><a href="/"><i class="fa fa-heart fa-2x"></a></i></div>
</div>
<div class="row">
<div class="col-md-6">
<h2 class="text-center">Code</h2>
<ul>
{% for post in site.categories.code %}
<ul><span>{{ post.date | date_to_string }}</span> <h2><a href="{{ post.url }}">{{ post.title }}</a></h2></ul>
{% endfor %}
</ul>
</div>
<div class="col-md-6">
<h2 class="text-center">Interests</h2>
<ul>
{% for post in site.categories.interests %}
<ul><span>{{ post.date | date_to_string }}</span> <h2><a href="{{ post.url }}">{{ post.title }}</a></h2> </ul>
{% endfor %}
</ul>
<hr>
</div>
</div>
<div class="row text-center">
<div class="col-md-6"><a href="/"><i class="fa fa-magic fa-2x"></a></i></div>
<div class="col-md-6"><a href="/"><i class="fa fa-male fa-2x"></a></i></div>
</div>
<div class="row">
<div class="col-md-6">
<h2 class="text-center">Magic</h2>
<ul>
{% for post in site.categories.magic %}
<ul><span>{{ post.date | date_to_string }}</span> <h2><a href="{{ post.url }}">{{ post.title }}</a></h2> </ul>
{% endfor %}
</ul>
</div>
<div class="col-md-6">
<h2 class="text-center">People</h2>
<ul>
{% for post in site.categories.people %}
<ul><span>{{ post.date | date_to_string }}</span> <h2><a href="{{ post.url }}">{{ post.title }}</a></h2> </ul>
{% endfor %}
</ul>
</div>
</div>