-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdates.html
37 lines (35 loc) · 1.31 KB
/
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
31
32
33
34
35
36
---
layout: base
title: "Updates"
excerpt: "Latest news on the Clintonville Neighborhood Greenways."
cover_image: whetstone-park-of-roses-bike-shelter.jpg
cover_image_caption: "Bike Shelter in Whetstone Park. Photo: Will Koehler"
---
<div class="page-cover" style="background-image:url(/images/{{ page.cover_image }});background-position:50% 35%;"></div>
<div class='cover-caption'>{{ page.cover_image_caption }}</div>
<article class="updates">
<div class="container">
<section>
<header>
<h1 class="title">Updates</h1>
<h2 class="subtitle">Latest news on the Clintonville Neighborhood Greenways</h2>
</h2>
</header>
<hr>
</section>
{% for post in site.posts %}
{% unless post.private %}
<section class="post_summary">
<h2 class="title"><a href="{{ post.url }}" rel="prefetch">{{ post.title }}</a></h2>
<p>{{ post.excerpt }}</p>
<div class="meta">
<address>{{ post.author.name }}</address> —
<time pubdate datetime="{{ post.date | date: "%Y-%d-%B" }}" title="{{ post.date | date: "%b %d, %Y" }}">{{ post.date | date: "%b %d, %Y" }}</time> —
{% include read_time_estimate.html content=post.content %}
</div>
<hr>
</section>
{% endunless %}
{% endfor %}
</div>
</article>