34 lines
700 B
HTML
34 lines
700 B
HTML
---
|
|
title: News
|
|
layout: page
|
|
permalink: /news/
|
|
index: 1
|
|
---
|
|
|
|
<div class="home">
|
|
|
|
{% assign posts = site.posts %}
|
|
{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
|
|
|
|
|
|
{%- if posts.size > 0 -%}
|
|
{%- if page.list_title -%}
|
|
<h2 class="post-list-heading">{{ page.list_title }}</h2>
|
|
{%- endif -%}
|
|
<div class="box home-box">
|
|
<div class="post-list">
|
|
{%- for post in posts -%}
|
|
<a class="post-link" href="{{ post.url | relative_url }}">
|
|
<h3>{{ post.title | escape }}</h3>
|
|
<br>
|
|
{{ post.date | date: date_format }}
|
|
</a>
|
|
{%- endfor -%}
|
|
</div>
|
|
</div>
|
|
|
|
{%- endif -%}
|
|
|
|
</div>
|
|
|