-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdates.html
More file actions
32 lines (29 loc) · 1.26 KB
/
updates.html
File metadata and controls
32 lines (29 loc) · 1.26 KB
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
---
layout: page
title: Updates
permalink: /updates/
description: 'All site updates'
---
<a class="social-link rss" href="{{ "/feed.xml" | absolute_url }}" title="Subscribe via RSS">
<svg role="img" viewBox="-1 -1 26 26" xmlns="http://www.w3.org/2000/svg"><title>RSS</title><path class="social-icon" d="M19.199 24C19.199 13.467 10.533 4.8 0 4.8V0c13.165 0 24 10.835 24 24h-4.801zM3.291 17.415c1.814 0 3.293 1.479 3.293 3.295 0 1.813-1.485 3.29-3.301 3.29C1.47 24 0 22.526 0 20.71s1.475-3.294 3.291-3.295zM15.909 24h-4.665c0-6.169-5.075-11.245-11.244-11.245V8.09c8.727 0 15.909 7.184 15.909 15.91z"/></svg>
<span class="call-to-action">Subscribe</span>
</a>
<ul class="post-listing">
{% for post in site.posts %}
<li class="post-summary">
<a href="{{ post.url }}" class="post-link">
<span class="post-title">{{ post.title }}</span>
{{ post.description }}
</a>
<nav>
<ul class="post-meta">
{% assign sortedCategories = post.categories | sort %}
{% for category in sortedCategories %}
<li class="post-tag"><a href="{{ category | absolute_url }}"><small>{{ category }}</small></a></li>
{% endfor %}
<li class="post-date"><small>{{ post.date | date: "%Y-%m-%d" }}</small></li>
</ul>
</nav>
</li>
{% endfor %}
</ul>