vedia/views/layout.erb
2025-04-06 17:05:07 -06:00

18 lines
512 B
Text

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title><%= _("Vote") %></title>
<script src="/chartkick.js"></script>
<script src="/Chart.bundle.js"></script>
</head>
<body>
<% if current_user %>
<p><%= _("Logged in as %{email}.") % { email: current_user.email } %> <a href="/logout"><%= _("Logout") %></a></p>
<p><a href="/"><%= _("Home") %></a></p>
<% else %>
<p><a href="/login"><%= _("Login") %></a></p>
<% end %>
<%= yield %>
</body>
</html>