_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<meta property="og:locale" content="en_US" /> 21<meta property="og:site_name" content="Steve0Greatness" /> 22<meta property="og:image" content="/OG-Image.png" /> 23{% endblock %} 24</head> 25 26<body> 27<header> 28<h2><a href="/"><img src="/SteveLogo.webp" height="35" width="215" alt="Steve0Greatness" /></a></h2> 29<nav> 30<a href="/blog">Blog</a> 31<a href="/list/link-tree.html">Link Tree</a> 32</nav> 33</header> 34{% block breadcrumbs %}{% endblock %} 35<main>{% block content %}{% endblock %}</main> 36<footer> 37<div class="footer-link-list-holder" role="group"> 38<span 39aria-hidden="true" 40id="footer-label-site-details" 41class="footer-link-list-label" 42>Site Meta</span> 43<ol class="footer-link-list" aria-labelledby="footer-label-site-details"> 44<li><a href="/list/website-sources-mirrors.html">Source Code</a></li> 45<li><a href="https://steve0greatness.github.io/extras">Extras</a></li> 46<li><a href="https://steve0greatness.atabook.org/">Guestbook</a></li> 47</ol> 48</div> 49<div class="footer-link-list-holder" role="group"> 50<span 51aria-hidden="true" 52id="footer-label-social-accounts" 53class="footer-link-list-label" 54>Profiles</span> 55<ol class="footer-link-list" aria-labelledby="footer-label-social-accounts"> 56<li><a href="https://mastodon.social/@S0G" rel="me">Mastodon</a></li> 57<li><a href="https://youtube.com/@s0g">YouTube</a></li> 58<li><a href="/list/link-tree.html">Link-Tree</a></li> 59</ol> 60</div> 61<div class="footer-link-list-holder" role="group"> 62<span 63aria-hidden="true" 64id="footer-label-button" 65class="footer-link-list-label" 66>Button</span> 67<div class="footer-link-list" aria-labelledby="footer-label-button"> 68<a href="https://steve0greatness.nekoweb.org"> 69<img 70src="/button.webp" 71title="Steve0Greatness" 72alt="Steve0Greatness" 73width="88" 74height="31" 75style="image-rendering: pixelated" 76/> 77</a> 78<textarea 79class="button-hotlink" 80readonly="readonly" 81placeholder="button hotlink" 82name="button-hotlink" 83><a href="https://steve0greatness.nekoweb.org"> 84<img 85src="https://steve0greatness.nekoweb.org/button.webp" 86title="Steve0Greatness" 87alt="Steve0Greatness" 88width="88" 89height="31" 90style="image-rendering: pixelated" 91/> 92</a></textarea> 93</div> 94</div> 95</footer> 96</body> 97 98</html> 99