-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate.html
30 lines (24 loc) · 860 Bytes
/
create.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
---
layout: default
title: Create
weight: 1
---
<main class="create page col-12 col-6-md col-offset-3-md col-offset-3-lg">
<h3 class="page__heading">Small thoughts and long-form essays.</h3>
{% for post in site.categories.create %}
<article class="post row">
<header class="post__header">
<h2 class="post__title"><a href="{{ post.url }}">{{ post.title }}</a></h2>
</header>
{{ post.content }}
<footer>
<ul class="post__tags">
{% for tag in post.tags %}
<li>{{ tag }}</li>
{% endfor %}
</ul>
<p class="post__meta">{{ post.date | date: "%b %-d, %Y" }}{% if post.author %} • {{ post.author }}{% endif %}{% if post.meta %} • {{ post.meta }}{% endif %}</p>
</footer>
</article>
{% endfor %}
</main>