-
Notifications
You must be signed in to change notification settings - Fork 0
/
writing.html
38 lines (33 loc) · 870 Bytes
/
writing.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
---
layout: default
pageClass: '-no-padding-top'
stylesheets:
- writing.css
title: "Writing"
---
{% include shapesHero.html heading="Writing" %}
<ul class="post-list content-limiter -thin">
{% for post in site.posts %}
{% if post.categories contains "Archive" or post.categories contains "WIP" %}
{% continue %}
{% endif %}
<li class="post-listing">
<div class="post-heading">
<h2>
<a href="{{ post.url }}" class="title">
{{ post.title }}
</a>
{% if post.draft %}
<span class="category -draft">Draft</span>
{% endif %}
</h2>
{% for category in post.categories %}
<span class="category">{{ category }}</span>
{% endfor %}
</div>
<div class="excerpt">
{{ post.excerpt }}
</div>
</li>
{% endfor %}
</ul>