1
0
mirror of https://github.com/projekteuler/projekteuler.git synced 2025-12-10 08:46:41 +01:00
projekteuler/app/views/layouts/application.html.erb

30 lines
712 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<title>Projekt Euler</title>
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
<%= csrf_meta_tags %>
</head>
<body>
<%= navbar position: :static do %>
<%= vertical do %>
<%= link_to 'Projekt Euler', root_path %>
<% end %>
<%= horizontal do %>
<%= nav class: 'navbar-left' do %>
<%= link_to 'Translations', translations_path %>
<% end %>
<% end %>
<% end %>
<div class="container">
<div class="row">
<div class="col-md-12" role="main">
<%= yield %>
</div>
</div>
</div>
</body>
</html>