mirror of
https://github.com/ghndrx/docker-test-image.git
synced 2026-02-10 06:45:05 +00:00
37 lines
895 B
HTML
37 lines
895 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Home</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body class="dark-grey-purple">
|
|
<header>
|
|
<div class="container">
|
|
<h1>hndrx</h1>
|
|
<div id="menu-toggle"></div>
|
|
<nav id="main-nav">
|
|
<ul>
|
|
<li><a href="index.html">Home</a></li>
|
|
<li><a href="about.html">About</a></li>
|
|
<li><a href="projects.html">Projects</a></li>
|
|
<li><a href="contact.html">Contact</a></li>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
<section id="latest-commits">
|
|
<h2>Latest Commits</h2>
|
|
<div id="commit-list">
|
|
<!-- Latest commits will be dynamically loaded here -->
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|