mirror of
https://github.com/projekteuler/projekteuler.git
synced 2025-12-10 08:46:41 +01:00
25 lines
589 B
Plaintext
25 lines
589 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>
|
|
<%= nav_bar :brand => 'Projekt Euler', :brand_link => root_path do %>
|
|
<%= menu_group do %>
|
|
<%= menu_item 'Probleme', problems_path %>
|
|
<% end %>
|
|
<% end %>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-12" role="main">
|
|
<%= yield %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|