-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
31 lines (19 loc) · 1.05 KB
/
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
---
title: Home
layout: home
excerpt: Digital manager at Suffolk Libraries. HTML, CSS, WordPress, Jekyll and Liquid. I also blog about managing and building websites and apps and working for a library service.
---
<h2 class="normal f6 lh-title c-sans-serif mt0 mb2 gray ttl small-caps tracked">Work</h2>
<ul class="ma0 mb4 pa0 list c-sans-serif bb b--light-gray">
{% assign work = site.posts | where: "category", "work" %}
{% for post in work limit:10 %}
<li class="ma0 pa0 bt b--light-gray f4"><a class="pv2 lh-title db dark-blue no-underline hover-dark-red" href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
<h2 class="normal f6 lh-title c-sans-serif mt0 mb2 gray ttl small-caps tracked">Writing</h2>
<ul class="ma0 mb4 pa0 list c-sans-serif bb b--light-gray">
{% assign featured = site.posts | where: "featured", "true" %}
{% for post in featured limit:10 %}
<li class="ma0 pa0 bt b--light-gray f4"><a class="pv2 lh-title db dark-blue no-underline hover-dark-red" href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>