+ Added projects/website.rst to describe the site + Updated templates + Added more comments
28 lines
1023 B
Plaintext
28 lines
1023 B
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://fonts.googleapis.com/css?family=Ubuntu+Mono&display=swap" rel="stylesheet">
|
|
<link rel='shortcut icon' href='/static/logo.png'/>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="center">
|
|
<a class="no_underline" href="/"> <h1 class="heading"> Joey Hines.</h1></a>
|
|
<div class="terminal">
|
|
<p class="text body">
|
|
<span class="prompt">joey@ahines:~$</span> {% block command %}{% endblock command %} <br/>
|
|
{% block content %}{% endblock content %}
|
|
<br/>
|
|
<span class="prompt">joey@ahines:~$</span> <span class="blinking"> ▊ </span>
|
|
</p>
|
|
</div>
|
|
<h6 class="text"> © <script type="text/javascript">document.write( new Date().getFullYear().toString());</script> Joey Hines</h6>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|