base project
This commit is contained in:
38
src/base.html
Normal file
38
src/base.html
Normal file
@@ -0,0 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" class="dark">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title><!-- PAGE_TITLE --></title>
|
||||
<link href="../dist/output.css" rel="stylesheet">
|
||||
</head>
|
||||
<body class="min-h-screen bg-black">
|
||||
<div class="container mx-auto px-4 py-8">
|
||||
<!-- START: Navigation -->
|
||||
<nav class="flex items-center justify-between mb-8">
|
||||
<div class="flex items-center">
|
||||
<img src="assets/logos/logo_lightmode.svg" alt="Logo" class="h-6 md:h-5 lg:h-6 w-auto mr-4">
|
||||
</div>
|
||||
<ul class="flex space-x-6 text-white">
|
||||
<li><a href="index.html" class="hover:text-gray-300">Home</a></li>
|
||||
<li><a href="about.html" class="hover:text-gray-300">About</a></li>
|
||||
<li><a href="features.html" class="hover:text-gray-300">Features</a></li>
|
||||
<li><a href="contact.html" class="hover:text-gray-300">Contact</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<!-- END: Navigation -->
|
||||
|
||||
<!-- START: Main Content -->
|
||||
<main>
|
||||
<!-- PAGE_CONTENT -->
|
||||
</main>
|
||||
<!-- END: Main Content -->
|
||||
|
||||
<!-- START: Footer -->
|
||||
<footer class="mt-12 text-center text-gray-400">
|
||||
<p>© 2025 Dark Mode Website. All rights reserved.</p>
|
||||
</footer>
|
||||
<!-- END: Footer -->
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user