55 lines
1.6 KiB
Text
55 lines
1.6 KiB
Text
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Vedia</title>
|
|
<script src="/chartkick.js"></script>
|
|
<script src="/Chart.bundle.js"></script>
|
|
<link rel="stylesheet" href="/bootstrap.css">
|
|
<link rel="stylesheet" href="/style.css">
|
|
</head>
|
|
<script>
|
|
fetch('/timezone', {
|
|
method: 'post',
|
|
headers: {
|
|
'Content-Type': 'application/json'
|
|
},
|
|
body: JSON.stringify({ timezone: Intl.DateTimeFormat().resolvedOptions().timeZone })
|
|
});
|
|
</script>
|
|
<body>
|
|
<div class="container py-4">
|
|
|
|
<header class="d-flex flex-wrap justify-content-center py-3 border-bottom">
|
|
<a href="/" class="d-flex align-items-center pe-5 mb-3 mb-md-0 me-md-auto link-body-emphasis text-decoration-none">
|
|
<span class="fs-4">Vedia</span>
|
|
</a>
|
|
<ul class="nav nav-pills">
|
|
<li class="nav-item">
|
|
<a href="/votes" class="nav-link"><%= _("Votes") %></a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<% if is_admin %>
|
|
<a href="/admin" class="nav-link"><%= _("Admin") %></a>
|
|
<% end %>
|
|
</li>
|
|
<li class="nav-item">
|
|
<% if current_user %>
|
|
<a href="/logout" class="nav-link"><%= _("Logout") %></a>
|
|
<% end %>
|
|
</li>
|
|
</ul>
|
|
</header>
|
|
|
|
<div class="d-flex flex-wrap justify-content-end pe-3 py-3 mb-4">
|
|
<% if current_user %>
|
|
<%= current_user.email %>
|
|
<% end %>
|
|
</div>
|
|
|
|
<%= yield %>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|