-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (25 loc) · 881 Bytes
/
index.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
---
layout: default
title: Home
weight: 0
---
<main class="home row">
{% for post in site.categories.curate %}
<article class="post col-12 col-6-md col-4-lg">
<header class="post__header">
<h2 class="post__title"><a href="{{ post.url }}">{{ post.title }}</a></h2>
</header>
<div class="post__content row">
{{ post.excerpt }}
</div>
<footer>
<p class="post__meta">{{ post.date | date: "%b %-d, %Y" }}{% if post.author %} • {{ post.author }}{% endif %}{% if post.meta %} • {{ post.meta }}{% endif %}</p>
<ul class="post__tags">
{% for tag in post.tags %}
<li>{{ tag }}</li>
{% endfor %}
</ul>
</footer>
</article>
{% endfor %}
</main>