-
Notifications
You must be signed in to change notification settings - Fork 0
/
all_posts.html
42 lines (26 loc) · 903 Bytes
/
all_posts.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
42
---
layout: default
title: All Posts
---
<div class="posts-list">
<ul>
{% for post in site.posts %}
<li>
<!-- Post -->
<div class="post-list-item">
<h1>{{ post.title }}</h1>
<p>{{ post.excerpt }}</p>
<a href="{{ post.url }}">Read More</a>
</div>
<!-- Tags -->
<div class="tags">
<ul>
{% for tag in post.tags %}
<li>{{ tag }}</li>
{% endfor %}
</ul>
</div>
</li>
{% endfor %}
</ul>
</div>