-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·29 lines (29 loc) · 940 Bytes
/
index.html
File metadata and controls
executable file
·29 lines (29 loc) · 940 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
26
27
28
29
---
layout: default
---
<div class="container main">
<div class="row">
<header>
<div><center><h1>{{ site.title }}</h1></center></div>
<center>
<span class="big-ornament">
<img src="assets/collatz.png" style="width:200px;height:252px">
</span>
</center>
</header>
</div>
<div class="row">
<div class="col-md-1"></div>
<div class="col-md-8 offset-md-1">
{% assign categories = site.categories | sort %}
{% for category in categories %}
<h3> {{ category | first }}</h3>
<p>{% for posts in category offset:1 %}
{% for post in posts %}
<a>{{ post.index }}</a>
{{forloop.index}}. <a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a> {% if forloop.last == false %} {% endif %}
{% endfor %} {% endfor %} </p>
{% endfor %}
</div>
</div>
</div>