etiquette/frontends/etiquette_flask/templates/root.html

63 lines
1.3 KiB
HTML
Raw Normal View History

2016-09-18 08:33:46 +00:00
<!DOCTYPE html5>
<html>
2016-11-27 09:06:11 +00:00
<head>
<title>Etiquette</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="/static/css/common.css">
2017-07-21 06:10:48 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
2016-09-18 08:33:46 +00:00
<style>
2018-03-19 22:06:07 +00:00
body
{
height: 100%;
margin: 0;
}
2017-03-17 08:03:19 +00:00
body, .nice_link
2016-09-18 08:33:46 +00:00
{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
2017-03-17 08:03:19 +00:00
.nice_link, .plain_link
2016-09-18 08:33:46 +00:00
{
2017-03-31 02:34:39 +00:00
margin: 8px;
2017-03-17 08:03:19 +00:00
}
.nice_link
{
width: 50%;
height: 40px;
background-color: var(--color_site_transparency);
2016-09-18 08:33:46 +00:00
}
2017-03-17 08:03:19 +00:00
.nice_link:hover
2016-10-10 03:50:13 +00:00
{
background-color: var(--color_site_secondary);
2016-10-10 03:50:13 +00:00
}
#motd
{
width: 50%;
text-align: center;
}
2016-09-18 08:33:46 +00:00
</style>
</head>
2016-11-27 09:06:11 +00:00
2016-09-18 08:33:46 +00:00
<body>
<span id="motd">{{motd}}</span>
2017-03-17 08:03:19 +00:00
<a class="nice_link" href="/search">Search</a>
<a class="nice_link" href="/tags">Browse tags</a>
<a class="nice_link" href="/albums">Browse albums</a>
<a class="nice_link" href="/bookmarks">Bookmarks</a>
{% if session.user %}
2018-04-15 21:23:24 +00:00
<a class="nice_link" href="/user/{{session.user.username}}">{{session.user.display_name}}</a>
{% else %}
2017-03-17 08:03:19 +00:00
<a class="nice_link" href="/login">Log in</a>
{% endif %}
2017-03-17 08:03:19 +00:00
<a class="plain_link" href="http://www.github.com/voussoir/etiquette">GitHub</a>
2016-09-18 08:33:46 +00:00
</body>
<script type="text/javascript">
2016-11-27 09:06:11 +00:00
</script>
</html>