thsf.net/src/thsf/templates/base.html

28 lines
791 B
HTML
Raw Normal View History

2023-04-05 16:14:50 +02:00
<!DOCTYPE html>
<html lang='zxx'>
<head>
<title>THSF 2023: S/Extraire</title>
<meta name="viewport" content="initial-scale=1.0" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet"
href="{{ url_for('static', filename='css/style.css') }}">
2023-04-08 02:45:59 +02:00
<link rel="stylesheet"
href="{{ url_for('static', filename='css/tooltip.css') }}">
2023-04-05 16:14:50 +02:00
<link rel="icon"
type="image/png"
href="{{ url_for('static', filename='images/favicon.png') }}" />
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
{% block headers %}
{% endblock %}
</head>
<body>
{% block content %}
{% endblock %}
2023-04-09 02:40:25 +02:00
{% block navbar %}
2023-04-09 04:38:07 +02:00
{% include "navbar.html" %}
2023-04-09 02:42:18 +02:00
{% endblock %}
2023-04-05 16:14:50 +02:00
</body>
</html>