41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Tiss2go</title>
|
|
<%= csrf_meta_tags %>
|
|
<%= csp_meta_tag %>
|
|
|
|
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
|
|
<%= javascript_pack_tag 'application', 'data-turbolinks-track': 'reload' %>
|
|
|
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1" name="viewport">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<nav>
|
|
<input type="checkbox" id="nav-toggle">
|
|
<label for="nav-toggle" class="burger-menu">
|
|
<%= show_svg('menu-white-24dp.svg') %>
|
|
</label>
|
|
<div class="left-menu">
|
|
<%= link_to 'Home', root_path %>
|
|
<%= link_to 'People', people_index_path %>
|
|
<%= link_to 'Courses', courses_index_path %>
|
|
<%= link_to 'Projects', projects_index_path %>
|
|
<%= link_to 'Theses', theses_index_path %>
|
|
</div>
|
|
<a href="#" class="logo">tiss2go</a>
|
|
<div class="right-menu">
|
|
<!-- TODO: Change root_path to login/register page -->
|
|
<%= link_to 'Logout', root_path %>
|
|
</div>
|
|
</nav>
|
|
|
|
<main>
|
|
<%= yield %>
|
|
</main>
|
|
|
|
</body>
|
|
</html>
|