playground/app/views/layouts/application.html.erb

40 lines
1.5 KiB
Text
Raw Permalink Normal View History

2026-05-17 03:44:36 +00:00
<!DOCTYPE html>
<html>
<head>
<title><%= content_for(:title) || "alien-kissing-computer" %></title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="application-name" content="Playground">
<meta name="mobile-web-app-capable" content="yes">
<%= 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="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>
<center> <div class="header">
<% if authenticated? %>
<%= button_to "Sign out", session_path, method: :delete %>
<% else %>
<%= link_to "🛸", new_session_path %>
<% end %>
</div><div class="navigate"><a href="/welcome/homepage">HOME!!!</a> 🛸 <a href="/shrines">SHRINES!!!</a> 🛸
<a href="/fun">FUN STUFF!!!</a> 🛸
<a href="/posts">MINIBLOG!!!</a> 🛸
<a href="/scraps">SCRAPS!!!</a> </center></div>
<%= yield %>
<center><small><small><small><small><a href="https://treasurechest.alien.town/agnes/playground">source</a></small></small></small></small></center>
</body>
</html>