-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (29 loc) · 892 Bytes
/
index.html
File metadata and controls
32 lines (29 loc) · 892 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
28
29
30
31
32
---
layout: default
title: Home
---
<div class="posts">
<h1 class="content-subhead">Recent Posts</h1>
{% for post in paginator.posts %}
<section class="post">
<header class="post-header">
<h2 class="post-title">
<a href="{{ post.url }}">{{ post.title }}</a>
</h2>
<div class="meta">
<div class="meta__tags">
Tagged in
{% for tag in post.tags %}
<a class="meta__tag" href="/tag/{{ tag | slugify }}">{{ tag }}</a>
{% endfor %}
</div>
<div class="meta__time">Published on <time datetime="{{ post.date }}">{{ post.date | date_to_string }}</time></div>
<div class="meta__author">Written by Ritchie Jacobs</div>
</div>
</header>
<div class="post-description">
<p>{{ post.content | strip_html | truncatewords: 40 }}</p>
</div>
</section>
{% endfor %}
</div>