start9-landing/src/news.njk

42 lines
No EOL
1.2 KiB
Text

---
title: News | Start9
layout: layouts/peripheral.njk
---
<section id="hero">
<div id="hero-image">
<img src="../assets/images/news-hero.png" alt=""/>
<img class="img-shadow" src="../assets/images/news-hero.png" alt=""/>
</div>
<div id="logo">
<h1>
<span>News</span>
</h1>
</div>
</section>
<section id="news">
{# <h2>{{ jobs|length }} {{ "Open Position" if jobs|length == 1 else "Open Positions" }}</h2> #}
<ul class="news">
{% for post in news %}
<li class="post">
<a href="{{ post.guid }}">
{% if post.creator %}
<span class="creator">{{ post.creator }}</span>
{% endif %}
{% if post.creator.includes('@') %}
<p class="twitter-text">{{ post.title }}</p>
{% else %}
<h3>{{ post.title }}</h3>
{% endif %}
<h4>{{ post.pubDate }}</h4>
{% if post.description %}
<p>{{ post.description }}</p>
{% endif %}
</a>
</li>
{% endfor %}
</ul>
</section>