view news.md @ 205:585fc24ed727

Adapt news system to foundation 6.
author Kai T. Ohlhus <k.ohlhus@gmail.com>
date Thu, 09 Jul 2020 23:01:48 +0900
parents 1222b6208a70
children
line wrap: on
line source

---
layout: page
title: News
menu: true
---

{% for post in site.posts %}
<div class="primary callout">
  {% if post == site.posts.first %}
  <a class="float-right button tiny warning" href="{{ "/feed.xml" | relative_url }}">
    RSS
  </a>
  {% endif %}
  {% if post.title == "News Archive" %}
  <h3 class="entry-title">
    <a href="{{ post.url | relative_url }}">{{ post.title }}</a>
  </h3>
  {% else %}
  <h3 class="entry-title">
    <a href="{{ post.url | relative_url }}">{{ post.title }}</a>
  </h3>
  <p class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</p>
  <div class="entry-content">
    {{ post.excerpt }}
  </div>
  {% endif %}
</div>
{% endfor %}