25 lines
971 B
Text
25 lines
971 B
Text
<main>
|
|
<section class="page-hero">
|
|
<div class="container split split-visual">
|
|
<div>
|
|
<h1>News</h1>
|
|
<p class="lead">Recent AutoTQ news and press links.</p>
|
|
</div>
|
|
<article class="video-frame reveal" data-reveal>
|
|
<iframe src="https://www.youtube.com/embed/rI2n9TlMYIU" title="AutoTQ press and awareness video" loading="lazy" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
|
|
</article>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="section">
|
|
<div class="container timeline">
|
|
<% (config.news || []).forEach(item => { %>
|
|
<article class="news-row 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>
|