76 lines
		
	
	
	
		
			3.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
	
		
			3.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <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>
 | |
|     <link rel="stylesheet" href="{{ asset('/css/master.css') }}"/>
 | |
|     <link rel="icon" type="image/png" href="{{ asset('/favicon-32x32.png') }}" sizes="32x32"/>
 | |
|     <link rel="icon" type="image/png" href="{{ asset('/favicon-16x16.png') }}" sizes="16x16"/>
 | |
|     @if ($isChristmas)<script src="{{ asset('/js/christmas/snowstorm.js') }}"></script>@endif
 | |
| 
 | |
| 
 | |
|     <!-- Page-specific -->
 | |
|     <meta property="og:title" content="wah! (dot moe) - {{ $title }}">
 | |
|     <meta property="og:image" content="{{ $cardImage ?? "/favicon-128x128.png" }}">
 | |
|     <meta property="og:description" content="{{ $cardDescription ?? "" }}">
 | |
| </head>
 | |
| <body>
 | |
|     <a href="https://git.arimelody.me/ari/prideflag" target="_blank" id="prideflag">
 | |
|         <img src="{{ asset('/images/progress.svg') }}" width="120" height="120" alt="progressive pride flag">
 | |
|     </a>
 | |
|     <div class="page-container">
 | |
|         <div id="header">
 | |
|             <header>
 | |
|                 <div>
 | |
|                     <img class="logo_paw" src="{{ asset('/images/logo-v2.png') }}" 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>
 | |
|                     <x-navigation></x-navigation>
 | |
|                 </div>
 | |
|             </header>
 | |
|         </div>
 | |
|         <div id="content">
 | |
|             <main>
 | |
|                 {{ $slot }}
 | |
|                 <div class="clear"></div>
 | |
|             </main>
 | |
|         </div>
 | |
|         <div>
 | |
|         <footer>
 | |
|             <div id="footer">
 | |
|                 <div>
 | |
|                     <span>
 | |
|                         © RoscoeDaWah 2021-{{ date('Y') }}<br>
 | |
|                         v{{ config('app.version') }}, <a href="https://git.frzn.dev/RoscoeDaWah/wah.moe/releases/latest">Source</a><br>
 | |
|                         <a href="https://webring.julimiro.eu/api/previous/wah.moe"><</a> <a href="https://webring.julimiro.eu/">the basename ring</a> <a href="https://webring.julimiro.eu/api/next/wah.moe">></a>
 | |
|                     </span>
 | |
|                 </div>
 | |
|                 <div>
 | |
|                     <img src="{{ URL::asset('images/buttons/wah.png') }}" alt="wah! (dot moe)">
 | |
|                     <a href="https://aliceisvery.gay/"><img src="{{ URL::asset('images/buttons/cnfunknown.gif') }}" alt="ConfusionUnknown"></a>
 | |
|                     <a href="https://julimiro.eu/"><img src="{{ URL::asset('images/buttons/juli.gif') }}" alt="Julimiro.eu"></a>
 | |
|                     <a href="https://x86.isafox.gay/"><img src="{{ URL::asset('images/buttons/x86.gif') }}" alt="x86Overflow"></a>
 | |
|                     <a href="https://thinliquid.dev/"><img src="{{ URL::asset('images/buttons/thnlqd.png') }}" alt="thinliquid"></a>
 | |
|                     <a href="https://dimden.dev/"><img src="https://dimden.dev/services/images/88x31.gif" alt="Dimden's website"></a><br>
 | |
|                     <img src="{{ URL::asset('images/buttons/servfail.png') }}" alt="Servfail DNS">
 | |
|                     <a href="https://linux.org/"><img src="{{ URL::asset('images/buttons/linuxnow.gif') }}" alt="Linux NOW!"></a>
 | |
|                     <img src="{{ URL::asset('images/buttons/paws-aliased.png') }}" alt="Made with my own two paws">
 | |
|                     <img src="{{ URL::asset('images/buttons/transrights.gif') }}" alt="Trans Rights NOW!">
 | |
|                     <a href="https://www.vim.org/"><img src="{{ URL::asset('images/buttons/vim.gif') }}" alt="Vim"></a>
 | |
|                     <img src="{{ URL::asset('images/buttons/aliasing.png') }}" alt="I Heart Aliasing">
 | |
|                 </div>
 | |
|             </div>
 | |
|         </footer>
 | |
|         </div>
 | |
|     </div>
 | |
| </body>
 | |
| </html>
 |