-
Notifications
You must be signed in to change notification settings - Fork 0
/
writing.html
35 lines (32 loc) · 862 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
---
layout: default
title: Writing
permalink: /writing/index.html
---
<div class="wrapper">
<div class="pure-g-r">
<div class="pure-u-1">
<div class="box">
<h2>Selected Publications</h2>
<h3>These are some of the places that have accepted my humor writing!</h3>
<dl>
{% for post in site.data.writing %}
<dt>
<a href="{{ post.url }}">{{ post.title }}</a>, {{ post.note }}
<i>{{ post.site }}</i>
</dt>
<dd>{{ post.excerpt }}</dd>
{% endfor %}
</dl>
<h2>Elsewhere</h2>
<h3>Other places where I write!</h3>
<dl>
<dt><a href="https://blog.yuqihou.com/">Personal Blog</a></dt>
<dd>Rarely updated.</dd>
<dt><a href="https://ironicheroine.wordpress.com/">Book Blog</a></dt>
<dd>Even less frequently updated and full of spoilers.</dd>
</dl>
</div>
</div>
</div>
</div>