_layout.html
HTML document, ASCII text
1<!DOCTYPE html> 2<html lang="en-us" prefix="og: https://ogp.me/ns# article: http://ogp.me/ns/article# profile: https://ogp.me/ns/profile#"> 3 4<head> 5{% block Head %} 6<meta charset="UTF-8" /> 7<meta name="viewport" content="width=device-width, initial-scale=1.0" /> 8<title>{% block title %}{% endblock %} - S0G</title> 9<style> 10body { 11background: black; 12color: white; 13} 14:any-link { 15color: red; 16} 17</style> 18<link rel="stylesheet" href="/src/global.css" /> 19<link rel="stylesheet" href="/src/marquee.css" defer="defer" /> 20<link rel="stylesheet" href="/src/nonimp.css" defer="defer" /> 21<meta property="og:locale" content="en_US" /> 22<meta property="og:site_name" content="Steve0Greatness" /> 23<meta property="og:image" content="/OG-Image.png" /> 24{% endblock %} 25</head> 26 27<body> 28<header> 29<h2><a href="/"><img src="/SteveLogo.webp" height="35" width="215" alt="Steve0Greatness" /></a></h2> 30<nav> 31<a href="/blog">Blog</a> 32<a href="/list/link-tree.html">Link Tree</a> 33</nav> 34</header> 35{% block breadcrumbs %}{% endblock %} 36<main>{% block content %}{% endblock %}</main> 37<footer> 38<div class="footer-link-list-holder" role="group"> 39<span 40aria-hidden="true" 41id="footer-label-site-details" 42class="footer-link-list-label" 43>Site Meta</span> 44<ol class="footer-link-list" aria-labelledby="footer-label-site-details"> 45<li><a href="/list/website-sources-mirrors.html">Source Code</a></li> 46<li><a href="https://steve0greatness.github.io/extras">Extras</a></li> 47<li><a href="https://steve0greatness.atabook.org/">Guestbook</a></li> 48</ol> 49</div> 50<div class="footer-link-list-holder" role="group"> 51<span 52aria-hidden="true" 53id="footer-label-social-accounts" 54class="footer-link-list-label" 55>Profiles</span> 56<ol class="footer-link-list" aria-labelledby="footer-label-social-accounts"> 57<li><a href="https://mastodon.social/@S0G" rel="me">Mastodon</a></li> 58<li><a href="https://youtube.com/@s0g">YouTube</a></li> 59<li><a href="/list/link-tree.html">Link-Tree</a></li> 60</ol> 61</div> 62<div class="footer-link-list-holder" role="group"> 63<span 64aria-hidden="true" 65id="footer-label-button" 66class="footer-link-list-label" 67>Button</span> 68<div class="footer-link-list" aria-labelledby="footer-label-button"> 69<a href="https://steve0greatness.nekoweb.org"> 70<img 71src="/button.webp" 72title="Steve0Greatness" 73alt="Steve0Greatness" 74width="88" 75height="31" 76style="image-rendering: pixelated" 77/> 78</a> 79<textarea 80class="button-hotlink" 81readonly="readonly" 82placeholder="button hotlink" 83name="button-hotlink" 84><a href="https://steve0greatness.nekoweb.org"> 85<img 86src="https://steve0greatness.nekoweb.org/button.webp" 87title="Steve0Greatness" 88alt="Steve0Greatness" 89width="88" 90height="31" 91style="image-rendering: pixelated" 92/> 93</a></textarea> 94</div> 95</div> 96</footer> 97</body> 98 99</html> 100