amity/templates/index.html
Micke Nordin 4dd92c0bdc
first commit
Signed-off-by: Micke Nordin <kano@sunet.se>
2025-06-24 13:27:40 +02:00

24 lines
502 B
HTML

<head>
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css" />
<title>Amity</title>
<style>
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav ul li {
display: inline-block;
margin: 0 10px;
}
</style>
</head>
<body>
<nav>
<ul>
<li><a aria-current="files" href="/files">Files</a></li>
<li><a aria-current="invites" href="/friends">Friends</a></li>
</ul>
</nav>
<h1>Hello {{ user }}</h1>
</body>