mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-04-14 19:47:03 +00:00
49 lines
1.4 KiB
Text
49 lines
1.4 KiB
Text
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>HabitTracker</title>
|
|
<%= stylesheet_link_tag "application", :media => "all" %>
|
|
<%= javascript_include_tag "application" %>
|
|
<%= csrf_meta_tags %>
|
|
</head>
|
|
<body>
|
|
<div id="container">
|
|
<div id="header">
|
|
<!-- <h1><a href="/">Web App</a></h1> -->
|
|
<h1><%= yield :score %></h1>
|
|
<div id="user-navigation">
|
|
<ul class="wat-cf">
|
|
<li><a href="#"><%= t("web-app-theme.profile", :default => "Profile") %></a></li>
|
|
<li><a href="#"><%= t("web-app-theme.settings", :default => "Settings") %></a></li>
|
|
<li><a href="/logout" class="logout"><%= t("web-app-theme.logout", :default => "Logout") %></a></li>
|
|
</ul>
|
|
</div>
|
|
<div id="main-navigation">
|
|
<ul class="wat-cf"></ul>
|
|
</div>
|
|
</div>
|
|
<div id="wrapper" class="wat-cf">
|
|
<div class="flash">
|
|
<% flash.each do |type, message| -%>
|
|
<div class="message <%= type %>">
|
|
<p><%= message %></p>
|
|
<p class="notice"><%= notice %></p>
|
|
<p class="alert"><%= alert %></p>
|
|
</div>
|
|
<% end -%>
|
|
</div>
|
|
<div id="main">
|
|
<%= yield %>
|
|
<div id="footer">
|
|
<div class="block">
|
|
<p>Copyright © <%= Time.now.year %> OCDevel.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="sidebar">
|
|
<%= yield :sidebar %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|