Divent/divent/templates/base.html.j2

25 lines
877 B
Django/Jinja

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<title>{{ client.user.display_name }} - {{ _('The discord scheduled event calendar generator') }}</title>
<link rel="stylesheet"
href="{{ url_for('static', filename='css/font-awesome.min.css') }}"/>
<link rel="stylesheet"
href="{{ url_for('static', filename='css/global.css') }}"/>
</head>
<body>
<div id="content">
{% block content %}
{% endblock content %}
</div>
<footer>
{% include "footer.html.j2" %}
</footer>
</body>
</html>