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