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