-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathblogs.html
More file actions
28 lines (27 loc) · 834 Bytes
/
Copy pathblogs.html
File metadata and controls
28 lines (27 loc) · 834 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
---
layout: default
title: Blogs
permalink: /blogs/
---
<section class="page-section wide">
<div class="eyebrow">Archive · {{ site.posts | size }} posts</div>
<h1 class="page-title smaller">Blogs</h1>
<div class="post-list">
{% for post in site.posts %}
<a class="post-row large" href="{{ post.url | relative_url }}">
<div class="post-row-date">{{ post.date | date: "%b %d, %Y" }}</div>
<div>
<div class="post-row-title">{{ post.title }}</div>
<div class="post-row-blurb">{{ post.description }}</div>
{% if post.tags.size > 0 %}
<div class="post-row-tags">
{% for tag in post.tags limit: 2 %}
<span class="post-row-tag">{{ tag }}</span>
{% endfor %}
</div>
{% endif %}
</div>
</a>
{% endfor %}
</div>
</section>