- 2.1: packs/ -> archive/packs/ - 2.2: site/ -> archive/site/ - 2.3: src/lab/ -> archive/lab/ - 2.4: examples/ -> archive/examples-legacy/ (SSI-based)
56 lines
1.8 KiB
HTML
56 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Section Name | Trentuna</title>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<nav aria-label="Main navigation">
|
|
<!-- Navigation links here -->
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<header>
|
|
<h1>Section Title</h1>
|
|
<p>A brief introduction to this collection of content.</p>
|
|
</header>
|
|
|
|
<section aria-labelledby="posts-heading">
|
|
<h2 id="posts-heading">Latest Entries</h2>
|
|
|
|
<article>
|
|
<h3><a href="#">Post One Title</a></h3>
|
|
<p>Short excerpt of the first post... Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
|
|
<a href="#" aria-label="Read more about Post One">Read more</a>
|
|
</article>
|
|
|
|
<article>
|
|
<h3><a href="#">Post Two Title</a></h3>
|
|
<p>Short excerpt of the second post... Ut enim ad minim veniam, quis nostrud exercitation.</p>
|
|
<a href="#" aria-label="Read more about Post Two">Read more</a>
|
|
</article>
|
|
|
|
<article>
|
|
<h3><a href="#">Post Three Title</a></h3>
|
|
<p>Short excerpt of the third post... Duis aute irure dolor in reprehenderit in voluptate.</p>
|
|
<a href="#" aria-label="Read more about Post Three">Read more</a>
|
|
</article>
|
|
</section>
|
|
|
|
<nav aria-label="Pagination">
|
|
<ul>
|
|
<li><a href="#" aria-current="page">1</a></li>
|
|
<li><a href="#">2</a></li>
|
|
<li><a href="#">Next »</a></li>
|
|
</ul>
|
|
</nav>
|
|
</main>
|
|
|
|
<footer>
|
|
<p>© 2026 Trentuna. All rights reserved.</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|