forked from townforge/townforge.net
31 lines
556 B
HTML
31 lines
556 B
HTML
---
|
|
title: News
|
|
layout: page
|
|
permalink: /news/
|
|
index: 1
|
|
---
|
|
|
|
<div class="home">
|
|
|
|
{% assign posts = site.posts %}
|
|
|
|
|
|
{%- 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>
|
|
</a>
|
|
{%- endfor -%}
|
|
</div>
|
|
</div>
|
|
|
|
{%- endif -%}
|
|
|
|
</div>
|
|
|