Switch from <nav> elements to <section> elements for source code repository locations

`<nav>` is used for main navigation across the website. It's more
logical to use `<section>` for source code repository sections.
This commit is contained in:
inference 2024-03-25 05:27:42 +00:00
parent fe8322e729
commit 76c2a2bc7f
Signed by: inference
SSH Key Fingerprint: SHA256:FtEVfx1CmTKMy40VwZvF4k+3TC+QhCWy+EmPRg50Nnc

View File

@ -1,7 +1,7 @@
<!DOCTYPE html>
<!-- Inferencium - Website - Source -->
<!-- Version: 8.1.0-alpha.2 -->
<!-- Version: 8.1.0-alpha.3 -->
<!-- Copyright 2022 Jake Winters -->
<!-- SPDX-License-Identifier: BSD-3-Clause -->
@ -48,7 +48,7 @@
</ul>
</ul>
</nav>
<nav id="main">
<section id="main">
<h2><a href="#main">Main</a></h2>
<p>The main source code repositories are located on Inferencium servers and are where development
occurs, along with where issues and pull requests are managed.</p>
@ -66,15 +66,15 @@
<li><a href="https://src.inferencium.net/Inferencium/sys/">sys</a> - Gentoo System ebuild repository</li>
<li><a href="https://src.inferencium.net/Inferencium/website/">website</a> - Website</li>
</ul>
</nav>
<nav id="mirror">
</section>
<section id="mirror">
<h2><a href="#mirror">Mirror</a></h2>
<p>The source code repository mirrors are located on third-party servers and are used solely as a
secondary location in case of main source code repository unavailability, such as Inferencium server
maintenance downtime or other technical issues. They also act as a backup for the main source code
repositories.</p>
<p>Issues and pull requests are not managed on third-party mirrors.</p>
<nav id="mirror-codeberg">
<section id="mirror-codeberg">
<h3><a href="#mirror-codeberg">Codeberg</a></h3>
<ul>
<li><a href="https://codeberg.org/Inferencium/cfg/">cfg</a> - Configuration files</li>
@ -85,8 +85,8 @@
<li><a href="https://codeberg.org/Inferencium/sys/">sys</a> - Gentoo System ebuild repository</li>
<li><a href="https://codeberg.org/Inferencium/website/">website</a> - Website</li>
</ul>
</nav>
</nav>
</section>
</section>
<div class="sitemap-small"><a href="sitemap.xhtml">Sitemap</a></div>
</body>
</html>