amity/templates/index.html

25 lines
502 B
HTML
Raw Permalink Normal View History

<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>