-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (26 loc) · 822 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
27
28
29
30
---
layout: default
---
<div class="posts">
{% for post in site.posts %}
{% unless post.hide_in_overview %}
<h2 class="post-title"><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a> </h2>
<article class="post">
<span class="date"> {{ post.date | date: "%B %e, %Y" }} </span>
<div class="entry">
{{ post.excerpt }}
</div>
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
</article>
{% endunless %}
{% endfor %}
<!--
{% for category in site.categories %}
<li style="font-size: {{ category | last | size | times: 100 | divided_by: site.categories.size | plus: 70 }}% ">
<a href="/{{ category | first | slugize }}/">
{{ category | first }}
</a>
</li>
{% endfor %}
-->
</div>