_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<li> 49<details class="inline-details"> 50<summary>Compile Info</summary> 51<table> 52<tbody> 53<tr> 54<th>Site Start</th> 55<td>{{SiteCompileTime}}</td> 56</tr> 57<tr> 58<th>Page Start</th> 59<td>{{CompileTime}}</td> 60</tr> 61<tr> 62<th>View Name</th> 63<td>{{ViewName}}</td> 64</tr> 65</tbody> 66</table> 67</details> 68</li> 69</ol> 70</div> 71<div class="footer-link-list-holder" role="group"> 72<span 73aria-hidden="true" 74id="footer-label-social-accounts" 75class="footer-link-list-label" 76>Profiles</span> 77<ol class="footer-link-list" aria-labelledby="footer-label-social-accounts"> 78<li><a href="https://mastodon.social/@S0G" rel="me">Mastodon</a></li> 79<li><a href="https://youtube.com/@s0g">YouTube</a></li> 80<li><a href="/list/link-tree.html">Link-Tree</a></li> 81</ol> 82</div> 83<div class="footer-link-list-holder" role="group"> 84<span 85aria-hidden="true" 86id="footer-label-button" 87class="footer-link-list-label" 88>Button</span> 89<div class="footer-link-list" aria-labelledby="footer-label-button"> 90<a href="https://steve0greatness.nekoweb.org"> 91<img 92src="/button.webp" 93title="Steve0Greatness" 94alt="Steve0Greatness" 95width="88" 96height="31" 97style="image-rendering: pixelated" 98/> 99</a> 100<textarea 101class="button-hotlink" 102readonly="readonly" 103placeholder="button hotlink" 104name="button-hotlink" 105><a href="https://steve0greatness.nekoweb.org"> 106<img 107src="https://steve0greatness.nekoweb.org/button.webp" 108title="Steve0Greatness" 109alt="Steve0Greatness" 110width="88" 111height="31" 112style="image-rendering: pixelated" 113/> 114</a></textarea> 115</div> 116</div> 117</footer> 118</body> 119 120</html> 121