_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 and Mirrors</a></li> 44<li><a href="https://steve0greatness.github.io/extras">Extras</a></li> 45</ol> 46</div> 47<div class="footer-link-list-holder" role="group"> 48<span 49aria-hidden="true" 50id="footer-label-social-accounts" 51class="footer-link-list-label" 52>Social Accounts</span> 53<ol class="footer-link-list" aria-labelledby="footer-label-social-accounts"> 54<li><a href="https://mastodon.social/@S0G" rel="me">Mastodon</a></li> 55<li><a href="https://youtube.com/@s0g">YouTube</a></li> 56<li><a href="/list/link-tree.html">More...</a></li> 57</ol> 58</div> 59<div class="footer-link-list-holder" role="group"> 60<span 61aria-hidden="true" 62id="footer-label-button" 63class="footer-link-list-label" 64>Button(hotlink it)</span> 65<div class="footer-link-list" aria-labelledby="footer-label-button"> 66<a href="https://steve0greatness.nekoweb.org"> 67<img 68src="/button.webp" 69title="Steve0Greatness" 70alt="Steve0Greatness" 71width="88" 72height="31" 73style="image-rendering: pixelated" 74/> 75</a> 76<textarea class="button-hotlink" readonly="readonly"><a href="https://steve0greatness.nekoweb.org"> 77<img 78src="https://steve0greatness.nekoweb.org/button.webp" 79title="Steve0Greatness" 80alt="Steve0Greatness" 81width="88" 82height="31" 83style="image-rendering: pixelated" 84/> 85</a></textarea> 86</div> 87</div> 88</footer> 89</body> 90 91</html> 92