-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.html
37 lines (33 loc) · 832 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
31
32
33
34
35
36
37
---
layout: page
---
{% for post in site.posts limit:10 %}
<div>
<div class="post-time">
{{ post.date | date: "%A, %B %-d, %Y" }}
</div>
<h2 class="post-title">
<a class="post-title-text" href="{{post.url | prepend:site.baseurl | prepend:site.url}}">
{{ post.title }}
</a>
</h2>
<div class="post-meta">
<ul>
{% for tag in post.tags %}
<li><a href="{{ site.baseurl }}/tag/{{ tag }}">{{ tag }}</a></li>
{% endfor %}
</ul>
</div>
</div>
<div class="post-descr">
<p>
{{ post.description }}
</p>
</div>
<hr>
{% endfor %}
<div class="post-footer">
<div class="column-full">
<h3><a href="{{ '/archive.html' | prepend: site.baseurl | prepend: site.url }}">Blog archive</a></h3>
</div>
</div>