mirror of
https://github.com/projekteuler/projekteuler.git
synced 2025-12-10 16:46:42 +01:00
31 lines
765 B
Plaintext
31 lines
765 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 'Problems', problems_path %>
|
|
<%= 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>
|