-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (37 loc) · 901 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
38
39
40
41
---
layout: page
---
{% for post in site.posts limit:10 %}
<h2 class="post-title">
<a href="{{post.url | prepend:site.baseurl }}">
{{ post.title }}
</a>
</h2>
<div class="post-meta">
<div class="post-time">
<time datetime='{{ post.date | date: "%Y-%m-%d" }}'>{{ post.date | date: "%B %d, %Y" }}</time>
</div>
<ul>
{% for tag in post.tags %}
<li><a href="{{site.baseurl }}/tag/{{ tag }}">{{ tag }}</a></li>
{% endfor %}
</ul>
</div>
<div class="post-descr">
{% if post.header != nil %}
<p>
<a href="{{post.url | prepend:site.baseurl }}">
<img src="{{ post.header }}" class=".center-image">
</a>
</p>
{% endif %}
<p>
{{ post.description }}
</p>
</div>
{% endfor %}
<div class="post-footer">
<div class="column-full">
<h3><a href="{{ '/archive/' | prepend: site.baseurl | prepend: site.url }}">Blog archive</a></h3>
</div>
</div>