2019-07-21 17:56:18 +00:00
|
|
|
---
|
2019-07-30 20:43:24 +00:00
|
|
|
layout: default
|
2019-07-30 19:30:13 +00:00
|
|
|
title: News
|
2019-07-21 17:56:18 +00:00
|
|
|
---
|
|
|
|
<article>
|
|
|
|
<header>
|
|
|
|
<a href="/">
|
2019-11-30 00:55:49 +00:00
|
|
|
<svg viewBox="0 0 24 24">
|
|
|
|
<path d="M14.71 15.88L10.83 12l3.88-3.88c.39-.39.39-1.02 0-1.41-.39-.39-1.02-.39-1.41 0L8.71 11.3c-.39.39-.39 1.02 0 1.41l4.59 4.59c.39.39 1.02.39 1.41 0 .38-.39.39-1.03 0-1.42z"/>
|
2019-07-21 17:56:18 +00:00
|
|
|
</svg>
|
|
|
|
</a>
|
2019-07-30 19:30:13 +00:00
|
|
|
<h1>{{ page.title }}</h1>
|
2019-07-21 17:56:18 +00:00
|
|
|
</header>
|
2019-07-25 22:27:19 +00:00
|
|
|
<ul class="news">
|
2019-07-21 17:56:18 +00:00
|
|
|
{% for post in site.posts %}
|
2019-12-01 06:21:29 +00:00
|
|
|
<li id="{{ post.date | date: '%Y-%m-%d' }}-{{ post.title }}">
|
2019-07-21 17:56:18 +00:00
|
|
|
{{ post.content }}
|
2019-11-30 00:55:49 +00:00
|
|
|
<svg viewBox="0 0 24 24">
|
|
|
|
<path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-.22-13h-.06c-.4 0-.72.32-.72.72v4.72c0 .35.18.68.49.86l4.15 2.49c.34.2.78.1.98-.24.21-.34.1-.79-.25-.99l-3.87-2.3V7.72c0-.4-.32-.72-.72-.72z"/>
|
2019-07-21 17:56:18 +00:00
|
|
|
</svg>
|
|
|
|
<span>{{ post.date | date: "%B %e, %Y" }}</span>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</article>
|