forked from caporaso-lab/caporaso-lab.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnews.html
More file actions
17 lines (17 loc) · 634 Bytes
/
news.html
File metadata and controls
17 lines (17 loc) · 634 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
layout: page
title: News
subtitle: Blog posts, videos, and articles from around the Internet.
permalink: /news/
color: purple
---
<ul class="list-posts">
{% for post in site.posts %}
<li class="post-teaser">
{% if post.site %}<a href="{{post.site}}" target="_blank">{% else %}<a href="{{ post.url | prepend: site.baseurl }}">{% endif %}
<span class="post-teaser__title">{{ post.title }}</span>
<span class="post-teaser__date">{% if post.sitename %}{{post.sitename}}, {% endif %}{{ post.date | date: "%d %B %Y" }}</span>
</a>
</li>
{% endfor %}
</ul>