distribusi-verse/verse/templates/base.html

23 lines
1.1 KiB
HTML
Raw Normal View History

2022-01-05 13:42:24 +01:00
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset="utf-8" />
2022-03-06 23:40:25 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-04-21 20:48:56 +02:00
<title>Varia Archive X Distribusi-Verse</title>
2022-01-05 13:42:24 +01:00
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/style.css')}}">
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/selector.css')}}">
2022-01-05 13:42:24 +01:00
<link rel="shortcut icon" href="{{ url_for('static', filename='icons/favicon.ico') }}">
<link rel="apple-touch-icon" sizes="180x180" href="{{ url_for('static', filename='icons/apple-touch-icon.png')}}">
<link rel="icon" type="image/png" sizes="32x32" href="{{ url_for('static', filename='icons/favicon-32x32.png')}}">
<link rel="icon" type="image/png" sizes="16x16" href="{{ url_for('static', filename='icons/favicon-16x16.png')}}">
<link rel="manifest" href="{{ url_for('static', filename='icons/site.webmanifest')}}">
</head>
<body>
{% block main %}
{% endblock main %}
{% block body %}
{% endblock body %}
2022-01-05 13:42:24 +01:00
</body>
<script src="{{ url_for('static', filename='js/script.js')}}"></script>
</html>