PDMI/PDMI/templates/front/base/base.html
2019-06-10 22:15:19 +02:00

21 lines
762 B
HTML

<!doctype html>
<html lang="fr">
<head>
<title>{% block title %}PDMI - Python Discord Module Index{% endblock %}</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="PDMI - Python Discord Module Index">
<meta name="author" content="Louis Chauvet">
<!-- Favicon.ico -->
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
<link href="{{ url_for('static', filename='front/vendor/bootstrap-4.3.1/css/bootstrap.css') }}" rel="stylesheet">
</head>
<body>
{% include "front/base/navbar.html" %}
{% block body %}
{% endblock %}
</body>
</html>