-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·25 lines (24 loc) · 826 Bytes
/
Copy pathindex.html
File metadata and controls
executable file
·25 lines (24 loc) · 826 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
---
layout: index
---
<ul class="list-container">
{% for post in paginator.posts %}
<li class="list-item clearfix {% if post.image %}have-img{% endif %}">
<div class="list-content">
<a class="link-title" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
<div class="abstract">{{ post.excerpt }}</div>
<div class="meta">
<a class="category" href="/categories.html#{{post.categories}}">{{ post.categories }}</a>
<time class="date">{{ post.date | date: "%Y-%m-%d" }}</time>
<a class="view"></a>
</div>
</div>
{% if post.image %}
<a class="thumb" href="{{ post.url | prepend: site.baseurl }}">
<img src="{{ post.image }}?imageMogr2/thumbnail/!240x150r">
</a>
{% endif %}
</li>
{% endfor %}
</ul>
{% include pagination.html %}