Files
simple-nanoshare/templates/side/base.htm
T
2025-10-24 08:20:04 +02:00

29 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="google-site-verification" content="NtTbMfo6Lv7kwnMAGywxbCeDYas8uPvX3Zfm0DkQR8U" />
<meta name="author" content="daniel156161">
<link rel="icon" href="{{ url_for('basic.favicon') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/root.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/fontawesome.all.min.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/fonts/PressStart2P.css') }}">
<link rel="me" href="https://blimps.xyz/@daniel156161" />
{% block meta %}{% endblock %}
<title>{% block title %}🦊🐲 Yiprawr{% endblock %}</title>
{% block head %}{% endblock %}
</head>
<body>
{% include 'elements/navigation.htm' %}
{% block content %}{% endblock %}
<footer>
<p>
&copy; {{ year }} Daniel Dolezal - NanoShare is easy to self-host and built on Python Quart for modern async performance
</p>
</footer>
{% block script %}{% endblock %}
</body>
</html>