forked from offconvex/offconvex.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (23 loc) · 640 Bytes
/
Copy pathindex.html
File metadata and controls
27 lines (23 loc) · 640 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
26
27
---
layout: default
---
<div class="home">
<div class="posts">
{% for post in paginator.posts %}
{% if post.visible %}
<div class="post">
<h3 class="h2 post-title">
<a href="{{ post.url | prepend: site.baseurl }}" class="post-link">
{{ post.title }}
</a>
</h3>
<p class="post-summary">
<span class="post-meta">{{ post.date | date: site.date_format }}. </span>
{{ post.content | strip_html | truncatewords:35}} <a href="{{ post.url }}">Continue</a>
</p>
</div>
{% endif %}
{% endfor %}
</div>
{% include pagination.html %}
</div>