forked from OpenC2-org/openc2-org.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnews2.html
31 lines (25 loc) · 789 Bytes
/
news2.html
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
29
30
31
---
layout: page
title: OpenC2 in the News
pageHeading: OpenC2 in the News
permalink: /news2.html
---
<main id="main">
<section class="features">
<div class="timeline" data-aos="fade-in">
<!-- build news array from news item files, reverse sort for latest first -->
{% assign news_array = site.news | sort: "sort-date" | reverse %}
<!-- loop through sorted news array -->
{% for newsitem in news_array %}
<div class="timecard" data-aos="fade-up">
<div class="content">
<h6>{{ newsitem.screen-date }}</h6>
<a rel="noopener noreferrer" target="_blank" href="{{ newsitem.title-url }}">{{ newsitem.title }}</a>.
<br>
{{ newsitem.content }}
</div>
</div>
{% endfor %}
</div>
</section>
</main>