This commit is contained in:
Ashley Rose
2026-02-23 10:45:57 -06:00
commit 7152f830c0
23 changed files with 636 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<head>
{% block head %}
<link rel="stylesheet" href="/static/css/main.css">
<title>{% block title %}{% endblock %} - Angel Icons</title>
{% endblock %}
</head>
<body>
<header>
<nav>
<a href="/ember">💜</a>
<a href="/chalice">❤️</a>
<a href="/"><img src="/static/image/favicon.png" alt="Tree of Life" height="200px"></a>
<a href="/sword">🖤</a>
<a href="/pentacle">💙</a>
</nav>
</header>
<main>{% block content %}{% endblock %}</main>
<footer>
{% block footer %}
&copy; Copyright 2026 Faye.
{% endblock %}
</footer>
</body>
</html>