21 lines
762 B
HTML
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>
|