aboutsummaryrefslogtreecommitdiff
blob: 7c5f343e1929714bcd077d97200077e8f7e6b6cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
title: 'News'
navtitle: 'News'
nav1: home
nav2: news
nav2-show: true
meta: '<link rel="alternate" type="application/atom+xml" title="Gentoo Linux news" href="/feeds/news.xml">'
---

{% for post in site.posts %}
<article class="newsitem">
  <h2 class="stick-top newsitem-bullet">
    <span class="fa fa-fw fa-chevron-circle-right" title="News item"> </span>
  </h2>
  <h2 class="stick-top newsitem-headline">
    <a href="{{ post.url }}">{{ post.title }}</a> <small>({{ post.date | date: "%b %-d, %Y" }})</small>
  </h2>
  <div class="newsitem-content">
    {{ post.excerpt }}
    {% if post.teaserlink %}
      <p>
        <span class="fa fa-fw fa-chevron-right"></span>
        <a href="{{ post.url }}">{{ post.teaserlink }}</a>
      </p>
    {% endif %}
  </div>
</article>
{% endfor %}