summaryrefslogtreecommitdiff
path: root/_includes/index.liquid
blob: 2e1d2fc6cc7edf6cc23b4bce278958c223f499ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<div class="column">
    {% for post in paginator.posts %}
	<div class="columns">
	    <div class="column post-summary">
		<h2>
		    <a class="index-content" href="{{ site.baseurl }}{{post.url }}">
			{{ post.title }}
		    </a>
		</h2>
		<div class="date">
		    {% capture month%}{{ post.date |  date: "%b" }}{% endcapture %}
		    {{ site.data[site.active_lang].strings.date[month]}} {{ post.date | date: "%e, %Y" }}
		</div>
		{{ post.excerpt }}
	    </div>
	</div>
    {% endfor %}
</div>

{% include pagination.liquid %}