forked from futurepress/Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdates.html
30 lines (21 loc) · 803 Bytes
/
updates.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
---
layout: default
title: Updates
permalink: /updates/
---
<div class="updates">
<h2 class="post-heading">Updates</h2>
{% for post in site.posts %}
<div class="post-list">
<header class="post-header">
<h3><a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h3>
<p class="post-meta">{{ post.date | date: "%b %-d, %Y" }}{% if post.author %} • {{ post.author }}{% endif %}{% if post.meta %} • {{ post.meta }}{% endif %}</p>
</header>
<article class="post-content">
{{ post.excerpt }}
<a href="{{ post.url | prepend: site.baseurl }}">Continue Reading ⤏</a>
</article>
</div>
{% endfor %}
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
</div>