-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwork.html
More file actions
25 lines (25 loc) · 705 Bytes
/
work.html
File metadata and controls
25 lines (25 loc) · 705 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
---
title: Work
layout: default
---
<main>
<header>
<h2><a href="{% link index.html %}">Hayden/</a></h2>
<h1>Work</h1>
</header>
{% assign sorted_work = site.work | reverse %}
{% for work in sorted_work %}
<article>
<header>
{% if work.icon %}
{% include {{ work.icon | prepend: 'svg/' }} %}
{% endif %}
<div>
<h1><a href="{{ work.url }}">{{ work.title }}</a></h1>
<time>{{ work.start_year }}—{{ work.end_year }}</time>
</div>
</header>
{{ work.description }}
</article>
{% endfor %}
</main>