afpy.org/afpy/templates/_parts/html_head.jinja2

13 lines
858 B
Django/Jinja

{% block html_head %}
<head>
<meta charset="utf-8">
<link rel="icon" href="{{ url_for('static', filename='images/favicon.ico') }}" />
<title>AFPY - Le site web de l'Association Francophone Python</title>
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/style.sass.css') }}" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<meta name="http-equiv="Content-Security-Policy" content="frame-src https://www.helloasso.com https://webkit.lemonway.fr/mb/helloasso/prod/">
<script type="text/javascript" src="{{ url_for('static', filename='js/Markdown.Converter.min.js') }}"></script>
<script type="text/javascript" src="{{ url_for('static', filename='js/Markdown.Sanitizer.min.js') }}"></script>
</head>
{% endblock %}