PCv5/app/templates/base/head.html

13 lines
370 B
HTML
Raw Normal View History

2018-02-23 23:34:06 +01:00
<head>
<title>Planète Casio</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2019-12-17 10:14:37 +01:00
<link rel="icon" href="{{ url_for('static', filename='icons/favicon-96.ico') }}" type="image/x-icon">
2019-12-17 10:10:51 +01:00
{% for s in styles %}
<link rel="stylesheet" type="text/css" href={{url_for('static', filename = s)}}>
{% endfor %}
</head>