website/templates/base.html.tera
Joey Hines 813c16a00c More refactoring + MD switch
+ Switched to Markdown
+ Removed RST module and tests
+ Converted RST pages to MD
+ Updated a few pages
+ Clippy + Fmt
2022-12-26 20:48:29 -06:00

29 lines
1.1 KiB
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="/static/style.css" xmlns="http://www.w3.org/1999/html">
<meta charset="UTF-8">
<title>Joey Hines.</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/hack-font/3.3.0/web/hack.min.css" rel="stylesheet">
<link rel='shortcut icon' href='/static/logo.png'/>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="center">
<a class="no_underline" href="/"> <h1 class="heading"> Joey Hines.</h1></a>
<div class="terminal">
<div class="text body">
<span class="prompt">joey@ahines:~$</span> {% block command %}{% endblock command %} <br/>
{% block content %}{% endblock content %}
<br/>
</div>
<span class="prompt text body">joey@ahines:~$</span> <span class="blinking"> &#9610; </span>
</div>
<h6 class="text"> &copy <script type="text/javascript">document.write( new Date().getFullYear().toString());</script> Joey Hines</h6>
</div>
</body>
</html>