35 lines
1 KiB
Text
35 lines
1 KiB
Text
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title><%= content_for(:title) || "Entrance Exam" %></title>
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<%= csrf_meta_tags %>
|
|
<%= csp_meta_tag %>
|
|
|
|
<%= yield :head %>
|
|
|
|
<link rel="icon" href="/icon.png" type="image/png">
|
|
<link rel="icon" href="/icon.svg" type="image/svg+xml">
|
|
<link rel="apple-touch-icon" href="/icon.png">
|
|
|
|
<%# Includes all stylesheet files in app/assets/stylesheets %>
|
|
<%= stylesheet_link_tag :app %>
|
|
<%= javascript_include_tag "application" %>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="body-container">
|
|
<header>
|
|
<a href="<%= sections_url %>">
|
|
<%= inline_svg_tag("gent-blue.svg") %>
|
|
</a>
|
|
<%= content_for(:header) %>
|
|
</header>
|
|
<main>
|
|
<div class="container">
|
|
<%= yield %>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</body>
|
|
</html>
|