_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="/">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 aria-hidden="true" id="footer-label-site-details" class="footer-link-list-label">Site Meta</span> 29<ol class="footer-link-list" aria-labelledby="footer-label-site-details"> 30<li><a href="https://github.com/Steve0Greatness/steve0greatness.github.io">Github Repository</a></li> 31<li><a href="https://steve0greatness.github.io/extras">Extras</a></li> 32</ol> 33</div> 34<div class="footer-link-list-holder" role="group"> 35<span aria-hidden="true" id="footer-label-social-accounts" class="footer-link-list-label">Social Accounts</span> 36<ol class="footer-link-list" aria-labelledby="footer-label-social-accounts"> 37<li><a href="https://mastodon.social/@S0G" rel="me">Mastodon</a></li> 38<li><a href="https://youtube.com/@s0g">YouTube</a></li> 39<li><a href="/list/link-tree.html">More...</a></li> 40</ol> 41</div> 42</footer> 43</body> 44 45</html> 46