-
Notifications
You must be signed in to change notification settings - Fork 33
/
index.html
26 lines (23 loc) · 853 Bytes
/
index.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
---
layout: default
title: Antkillerfarm Hacking
---
<h2>Total {{site.posts.size}} posts in {{site.categories.size}} categories of this blog </h2>
<ul class="category">
{% for category in site.categories %}
{% capture cat %}{{ category | first }}{% endcapture %}
<li>» <a href="#{{cat}}">{{cat}}</a> <span>{{site.categories[cat].size}} posts</span></li>
{% endfor %}
</ul>
{% for category in site.categories %}
{% capture cat %}{{ category | first }}{% endcapture %}
<h2>{{site.categories[cat].size}} posts of {{cat}} <a name="{{cat}}"/></h2>
<ul class="posts">
{% for post in site.categories[cat] %}
<li>
<span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
{% endfor %}
<h1 class="titlex">Total {{site.posts.size}} posts</h1>