Update 'www/template.html'

Integrated Navigation Bar & Footer
www
Mitsuo Makuda 3 years ago
parent 8e3880cb8e
commit bc3dac1876

@ -3,7 +3,7 @@
<head> <head>
<!-- HEAD --> <!-- /HEAD/ -->
<!-- /Basic HEAD/ --> <!-- /Basic HEAD/ -->
<title>Brand Page</title> <title>Brand Page</title>
<!-- \Basic HEAD\ --> <!-- \Basic HEAD\ -->
@ -85,12 +85,135 @@
<link rel="stylesheet" href="https://cdn.domain.tld/css/fontawesome.css"> <link rel="stylesheet" href="https://cdn.domain.tld/css/fontawesome.css">
<link rel="stylesheet" href="https://cdn.domain.tld/css/prism.css"> <link rel="stylesheet" href="https://cdn.domain.tld/css/prism.css">
<!-- \External CSS\ --> <!-- \External CSS\ -->
<!-- \HEAD\ -->
</head> </head>
<body> <body>
<!-- BODY --> <!-- /BODY/ -->
<!-- /Navigation Bar/ -->
<nav class="navbar navbar-dark bg-brand navbar-expand-lg">
<div class="container-fluid">
<a class="navbar-brand" href="/">
<img src="https://cdn.domain.tld/img/branding/navbar_logo.png" height="30" alt="Brand Logo" loading="lazy">
Brand Name
</a>
<button class="navbar-toggler ps-0 pe-1" type="button" data-mdb-toggle="collapse" data-mdb-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon d-flex justify-content-end align-items-center">
<i class="mi mi-ButtonMenu"></i>
</span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<hr class="dropdown-divider">
</li>
<li class="nav-item">
<a class="nav-link active disabled" aria-current="page" href="/">
You are <i class="mi mi-ChevronRight"></i> <i class="mi mi-Home"></i> (/index.html)
<!-- This tells the user where their current location is on the website -->
</a>
</li>
<li class="nav-item">
<hr class="dropdown-divider">
</li>
<li class="nav-item">
<a class="nav-link disabled" href="https://discord.gg/invite">
<i class="mi mi-discord"></i> Brand Invite
<!-- This is the direct link to the brand's Discord server with no extra fluff -->
</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="/staff/index.html">
<i class="mi mi-Group"></i> Staff Information
<!-- This is the homepage for everything relating to staff information, such as;
- About our Staff
- How to become a staff member
- Staff rules (if applicable)
-->
</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="/partners/index.html">
<i class="mi mi-ContactInfo"></i> Brand Partners
<!-- This is the homepage for any information on partnerships, such as;
- Links to external websites that deal with partnerships (i.e. Disboard)
- List of Standard Partnerships
- List of Trusted Partnerships (Along with a live counter for their numbers)
- How to set up a standard partnership with us
- How to set up a trusted partnership with us
- Our Partner Blacklist
- Other information to do with partnerships
-->
</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="/projects/index.html">
<i class="mi mi-"></i> Brand Projects
<!-- This is the homepage of projects that are linked to the brand, such as;
- Other Discord guilds made by the same owner/have the same team behind it
- Any networks the brand is associated with
- Any service that is accessible either publically or semi-publically
-->
</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="/affliates/index.html">
<i class="mi mi-adversal"></i> Brand Affliates
<!-- This is the homepage for external services that financially support the brand in one way or another, such as;
- A donation platform (i.e. KoFi)
- A subscription platform (i.e. Patreon)
- A service that has a partner/affiate program (i.e. Lovense)
-->
</a>
</li>
<li class="nav-item">
<hr class="dropdown-divider">
</li>
<li class="nav-item">
<a class="nav-link disabled" href="https://hdd.domain.tld">
<i class="mi mi-Cloud"></i> Brand Groupware
</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- \Navigation Bar\ -->
<!-- /Website Content/ -->
<br>
<!-- \Website Content\ -->
<!-- /Footer/ -->
<footer class="footer bg-brand text-light mt-auto">
<div class="footer-copyright">
<p class="text-center text-light mb-0 py-3">
&#xa9; (Year of Brand starting) (Brand Name)
</p>
</div>
</footer>
<!-- \Footer\ -->
<!-- \BODY\ -->
<script src="https://cdn.domain.tld/js/mdb.min.js"></script>
</body> </body>

Loading…
Cancel
Save