Skip to content

Commit

Permalink
Create 8_fpki_announcements_archived.md
Browse files Browse the repository at this point in the history
Added an archived announcements page
  • Loading branch information
claytonjbarnette authored Jan 27, 2023
1 parent 885f5c5 commit 7793663
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions _fpki/8_fpki_announcements_archived.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
layout: page
collection: fpki
title: Archived Announcements
permalink: /fpki/announcements/archived/
sticky_sidenav: true
sidenav: fpki

subnav:
- text: Back to Announcements
href: /fpki/announcements
---

These announcements have been archived one year after they their release and will be removed from the site after three years.

<table class="usa-table--borderless">
<thead class="usa-sr">
<tr>
<th id="announce-table-heading-title" scope="col">Title</th>
<th id="announce-table-heading-date" scope="col">Date</th>
<th id="announce-table-heading-description" scope="col">Description</th>
</tr>
</thead>
<tbody>
{% assign announcements = site.fpki.announcements | concat: site.data.fpkiannouncements %}
{% for announcement in announcements %}
{% if announcement.status == "Archived" %}
<tr>
<td headers="announce-table-heading-{{ status | slugify }} announce-table-heading-title"><a href="{{ announcement.url | relative_url }}" title="announcement.title">{{ announcement.title }}</a></td>
<td headers="announce-table-heading-{{ status | slugify }} announce-table-heading-date"><a date="announcement.pubDate">{{ announcement.pubDate }}</a></td>
<td headers="announce-table-heading-{{ status | slugify }} announce-table-heading-description">{{ announcement.description }}</td>
</tr>
{% endif %}
{% endfor %}
</tbody>
</table>

0 comments on commit 7793663

Please sign in to comment.