git-server-ui/templates/index.html
2025-05-13 13:35:37 -04:00

29 lines
973 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="/styles/common.css" />
<link rel="stylesheet" href="/styles/index.css" />
<title>Barrett Ruth's Git Server</title>
</head>
<body class="graph-background">
<site-header></site-header>
<main class="main">
<div class="content">
<ul class="topics">
{% for repo in repositories %}
<li class="topic">
<a href="javascript:void(0)" onclick="typechars(event)" data-repo-id="{{ loop.index0 }}">{{ repo.name }}</a>
</li>
{% endfor %}
</ul>
<div class="posts" id="repos"></div>
</div>
</main>
<site-footer></site-footer>
<script src="scripts/common.js"></script>
<script src="scripts/index.js"></script>
</body>
</html>