35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
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" />
|
|
<link rel="icon" type="image/webp" href="/public/logo.webp" />
|
|
<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>
|