You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.2 KiB
32 lines
1.2 KiB
<!DOCTYPE html> |
|
|
|
<html lang="en"> |
|
<head> |
|
<meta charset="utf-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> |
|
<link href="{{ url_for('static', filename='styles.css') }}" rel="stylesheet"> |
|
<link href="{{ url_for('static', filename='favicon.ico') }}" rel="shortcut icon"> |
|
<title>Trees' Street</title> |
|
</head> |
|
<body tabindex="0"> |
|
<header> |
|
<h1>You find yourself on a winding path deep in the forest...</h1> |
|
<nav> |
|
<a class="nav-item" href="{{ url_for('index') }}">Home</a> |
|
<a class="nav-item" href="{{ url_for('blog') }}">Blog</a> |
|
<a class="nav-item" href="https://git.trees.st/Marie-Joseph">Projects</a> |
|
</nav> |
|
</header> |
|
<main> |
|
{% block main %}{% endblock %} |
|
</main> |
|
<footer> |
|
<small> |
|
Subscribe to my <a href="{{ url_for('feed') }}">RSS feed</a><br /> |
|
All code (Hy, HTML, Jinja, CSS) for this website is licensed under the <a href="https://www.gnu.org/licenses/gpl-3.0-standalone.html">GPLv3</a> |
|
and available <a href="https://git.trees.st/Marie-Joseph/hy-website">here</a>.<br /> |
|
All blog posts (the raw text) are licensed <a href="https://creativecommons.org/licenses/by-sa/4.0/legalcode">CC-BY-SA 4.0</a>. |
|
</small> |
|
</footer> |
|
</body> |
|
</html>
|
|
|