-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnews.html
More file actions
32 lines (30 loc) · 849 Bytes
/
news.html
File metadata and controls
32 lines (30 loc) · 849 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
26
27
28
29
30
31
32
---
layout: page
title: News
permalink: /news/
showHeader: true
---
The latest news related to the Clockwork platform:
<ul class="post-list">
{% for post in site.posts %}
{% if post.categories contains "news" %}
<li>
<div class="postLink">
<img src="{{ site.baseurl }}{{ post.heropic }}" />
<div class="details">
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<div>
Tags:
{% for category in post.categories %}
<a href="{{ site.baseurl }}/tags#{{ category }}"> {{ category }} </a>
{% endfor %}
</div>
</div>
</div>
</li>
{% endif %}
{% endfor %}
</ul>