20 lines
609 B
Text
20 lines
609 B
Text
<main>
|
|
<section class="page-hero">
|
|
<div class="container">
|
|
<h1>News</h1>
|
|
<p class="lead">Recent AutoTQ news and press links.</p>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="section">
|
|
<div class="container timeline">
|
|
<% (config.news || []).forEach(item => { %>
|
|
<article class="glass-card news-card reveal" data-reveal>
|
|
<p class="date"><%= item.date %></p>
|
|
<h3><%= item.title %></h3>
|
|
<a class="text-link" href="<%= item.url %>" target="_blank" rel="noopener noreferrer">View source →</a>
|
|
</article>
|
|
<% }) %>
|
|
</div>
|
|
</section>
|
|
</main>
|