34 lines
1.0 KiB
HTML
34 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Movies Diary</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<a href="/" class="site-title">Movies Diary</a>
|
|
<nav>
|
|
<a href="/feed.rss">RSS</a>
|
|
{% if let Some(email) = ctx.user_email %}
|
|
<a href="/reviews/new">Add Review</a>
|
|
<span class="user-email">{{ email }}</span>
|
|
<a href="/logout">Logout</a>
|
|
{% else %}
|
|
<a href="/login">Login</a>
|
|
{% if ctx.register_enabled %}
|
|
<a href="/register">Register</a>
|
|
{% endif %}
|
|
{% endif %}
|
|
</nav>
|
|
</header>
|
|
<main>
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
</body>
|
|
</html>
|