Files
angelicons/templates/base.html.twig
T
Ashley Rose 7152f830c0 Init
2026-02-23 10:45:57 -06:00

26 lines
806 B
Twig

<!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>