InfiniteWebsite/src/templates/base.html

35 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Tyler Perkins">
<meta name="description" content="The Infinite Website, powered by GPT-4">
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<title>The Infinite Website</title>
</head>
<body>
<header>
<a href="/">Home</a>
<a href="https://tylerperkins.xyz">Main Site</a>
<p>{{ path }}</p>
</header>
<div class="content">
{{ content|safe }}
</div>
<footer>
<p style="margin: auto; text-align: center;">
<small>
Copyleft
<span style="display: inline-block; transform: rotate(180deg);">©</span>
2023.
<a href="https://git.clortox.com/tyler/InfiniteWebsite" class="white-link">Free open source software</a>
</small>
</p>
<p style="margin: auto; text-align: center;">
<small>Content made by an AI may be wrong. Just for fun.</small>
</p>
</footer>
</body>
</html>