Files
hikari/client/src/app/announcements/announcements.html
Naomi Carrigan af33e704a4
All checks were successful
Node.js CI / Lint and Test (push) Successful in 1m8s
fix: remove type from bottom of announcements oops
2025-07-05 19:56:34 -07:00

20 lines
770 B
HTML

<h1>Announcements</h1>
<p>Here are the most recent updates for our products and communities.</p>
<p>
If you want to see the full history, check out our
<a href="https://chat.nhcarrigan.com" target="_blank">chat server</a> or our
<a href="https://forum.nhcarrigan.com" target="_blank">forum</a>.
</p>
<div class="announcement" *ngFor="let announcement of announcements">
<hr />
<h2>{{ announcement.title }}</h2>
<p>
<span [class]="'tag ' + announcement.type">{{announcement.type}}</span>
<span class="date"> {{ announcement.createdAt | date: "mediumDate" }}</span>
</p>
<markdown [data]="announcement.content"></markdown>
</div>
<div class="no-announcements" *ngIf="!announcements.length">
<p>There are no announcements at this time.</p>
</div>