Add favicon

This commit is contained in:
Alexandre Iooss 2021-09-23 09:58:19 +02:00
parent 80dc92ce26
commit 13f5a446dd
4 changed files with 4 additions and 0 deletions

View file

@ -11,6 +11,9 @@ SPDX-License-Identifier: GPL-3.0-or-later
<title>{% block title %}{{ title }}{% endblock title %} - {{ request.site.name }}</title>
<meta name="description" content="{% trans "The ENS Paris-Saclay pictures server." %}">
<link rel="stylesheet" href="{% static "bootstrap5/css/bootstrap.min.css" %}">
<link rel="icon" type="image/png" sizes="16x16" href="{% static "favicon-16x16.png" %}">
<link rel="icon" type="image/png" sizes="32x32" href="{% static "favicon-32x32.png" %}">
{% block extracss %}{% endblock %}
</head>
<body class="bg-light">
<nav class="navbar navbar-expand-lg navbar-dark bg-dark py-0">
@ -63,5 +66,6 @@ SPDX-License-Identifier: GPL-3.0-or-later
</main>
<script src="{% static "bootstrap5/js/bootstrap.min.js" %}"></script>
{% block extrajs %}{% endblock %}
</body>
</html>