56 lines
2.2 KiB
Plaintext
56 lines
2.2 KiB
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title><%= content_for(:title) || "Meine Website" %></title>
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
|
|
<meta name="turbo-prefetch" content="false">
|
|
<meta name="turbo-refresh-method" content="morph">
|
|
<meta name="turbo-refresh-scroll" content="preserve">
|
|
|
|
<%= csrf_meta_tags %>
|
|
<%= csp_meta_tag %>
|
|
|
|
<%= yield :head %>
|
|
|
|
<%# Enable PWA manifest for installable apps (make sure to enable in config/routes.rb too!) %>
|
|
<%#= tag.link rel: "manifest", href: pwa_manifest_path(format: :json) %>
|
|
|
|
<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, "data-turbo-track": "reload" %>
|
|
<%= javascript_importmap_tags %>
|
|
</head>
|
|
|
|
<body>
|
|
<nav class="m-4 flex justify-between">
|
|
<ul class="flex items-center *:inline *:pr-2 *:not-last:after:content-['|'] *:after:pl-2">
|
|
<li>
|
|
<%= link_to root_path, class: 'inline-block' do %>
|
|
<svg class="h-6 w-6" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 7.093v-5.093h-3v2.093l3 3zm4 5.907l-12-12-12 12h3v10h7v-5h4v5h7v-10h3zm-5 8h-3v-5h-8v5h-3v-10.26l7-6.912 7 6.99v10.182z"/></svg>
|
|
<% end %>
|
|
</li>
|
|
<li><%= link_to "Leistungen", pages_path(:leistungen) %></li>
|
|
<li><%= link_to "Anfahrt", pages_path(:anfahrt) %></li>
|
|
<li><%= link_to "Kontakt", pages_path(:kontakt) %></li>
|
|
<li><%= link_to "Parties", parties_path %></li>
|
|
<li><%= link_to "Freunde", friends_path %></li>
|
|
</ul>
|
|
|
|
<ul class="flex *:inline *:pr-2 *:not-last:after:content-['|'] *:after:pl-2">
|
|
<li><%= link_to "Datenschutz", pages_path(:datenschutz) %></li>
|
|
<li><%= link_to "Impressum", pages_path(:impressum) %></li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<main class="container mx-auto mt-28 px-5">
|
|
<%= yield %>
|
|
</main>
|
|
</body>
|
|
</html>
|