gnousdoteu-v3/apps/gnous_eu/templates/layouts/head.html
2020-05-16 02:12:21 +02:00

22 lines
1,001 B
HTML

{% load static %}
{% load i18n %}
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="turbolinks-cache-control" content="no-preview">
<link rel="shortcut icon" href="{% static 'images/favicon.ico' %}" type="image/x-icon">
<title>Gnous.eu
{% if request.resolver_match.url_name == 'index' %} - {% trans "Accueil" %} {% endif %}
{% if request.resolver_match.url_name == 'services' %} - {% trans "Services" %} {% endif %}
{% if request.resolver_match.url_name == 'about' %} - {% trans "À propos" %} {% endif %}
{% if request.resolver_match.url_name == 'tips' %} - {% trans "Dons" %} {% endif %}
</title>
<link rel="stylesheet" href="{% static 'stylesheets/css/index.css' %}">
<script src="{% static 'javascripts/turbolinks.js' %}"></script>
<script src="{% static 'javascripts/main.js' %}" defer></script>
</head>