There be a website

This commit is contained in:
Roscoe 2025-09-21 03:09:52 +01:00
commit af0907c7c3
Signed by: RoscoeDaWah
SSH key fingerprint: SHA256:Hqn452XQ1ETzUt/FthJu6+OFkS4NBxCv5VQSEvuk7CE
65 changed files with 708 additions and 14 deletions

View file

@ -1,10 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<title><%= content_for(:title) || "Wah Moe" %></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">
<html lang="en">
<head>
<!-- Global -->
<meta charset="utf-8">
<meta property="og:type" content="website">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#f27405">
<meta name="twitter:card" content="summary_large_image">
<title>wah! (dot moe)</title>
<%= csrf_meta_tags %>
<%= csp_meta_tag %>
@ -13,15 +16,75 @@
<%# 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">
<%= favicon_link_tag %>
<%# Includes all stylesheet files in app/assets/stylesheets %>
<%= stylesheet_link_tag :app %>
</head>
</head>
<body>
<%= yield %>
</body>
<body>
<%= link_to (image_tag "progress.svg", width: 120, height: 120, alt: "progressive pride flag"), "https://git.arimelody.me/ari/prideflag", id: "prideflag", target: "_blank" %>
<div class="page-container">
<div id="header">
<header>
<div>
<%= image_tag "logo-v2.png", class: "logo_paw", width: 65, alt: "A pixel art depiction of a paw, in three alternating shades of blue."%>
</div>
<div>
<h1>wah!</h1>
<p>
(dot moe)
</p>
<nav>
<strong>Pages:</strong>
<a href="/">home</a> |
<% unless is_legacy then%>
<a href="//wiki.wah.moe">wah-ki</a> |
<% end %>
<a href="//git.wah.moe">git</a> |
<a href="/pub">files</a> |
<a href="gopher://wah.moe">gopher</a> |
<a href="/bookmarks">bookmarks</a> |
<a href="/guestbook">guestbook</a> |
<a href="/music">music</a> |
<a href="/pandamonium">pandamonium</a>
</nav>
</div>
</header>
</div>
<div id="content">
<main>
<%= yield %>
<div class="clear"></div>
</main>
</div>
<div>
<footer>
<div id="footer">
<div>
<span>
&copy; RoscoeDaWah 2021-<%= Time.now.year %><br>
vVERSION, <a href="https://git.frzn.dev/RoscoeDaWah/wah.moe/releases/latest">Source</a><br>
<a href="https://webring.julimiro.eu/api/previous/wah.moe">&lt;</a> <a href="https://webring.julimiro.eu/">the basename ring</a> <a href="https://webring.julimiro.eu/api/next/wah.moe">&gt;</a>
</span>
</div>
<div>
<%= image_tag "buttons/wah.png", alt: "wah! (dot moe)" %>
<%= link_to (image_tag "buttons/cnfunknown.gif", alt: "ConfusionUnknown"), "https://aliceisvery.gay" %>
<%= link_to (image_tag "buttons/juli.gif", alt: "Julimiro.eu"), "https://julimiro.eu" %>
<%= link_to (image_tag "buttons/x86.gif", alt: "x86Overflow"), "https://x86.isafox.gay" %>
<%= link_to (image_tag "buttons/thnlqd.png", alt: "thinliquid"), "https://thinliquid.dev" %>
<%= link_to (image_tag "https://dimden.dev/services/images/88x31.gif", alt: "Dimden's website"), "https://dimden.dev" %><br>
<%= image_tag "buttons/servfail.png", alt: "Servfail DNS" %>
<%= link_to (image_tag "buttons/linuxnow.gif", alt: "Linux NOW!"), "https://linux.org" %>
<%= image_tag "buttons/paws-aliased.png", alt: "Made with my own two paws" %>
<%= image_tag "buttons/transrights.gif", alt: "Trans Rights NOW!" %>
<%= link_to (image_tag "buttons/vim.gif", alt: "Vim"), "https://www.vim.org" %>
<%= image_tag "buttons/aliasing.png", alt: "I Heart Aliasing" %>
</div>
</div>
</footer>
</div>
</div>
</body>
</html>