2023-07-22 13:18:15 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>{{ title }}</title>
|
|
|
|
<meta name="title" content="{{ title }}" />
|
2023-07-23 16:02:45 +00:00
|
|
|
<meta name="description" content="{{ description | striptags }}" />
|
2023-07-25 07:45:30 +00:00
|
|
|
<link href="/css/style.css" rel="stylesheet">
|
2023-07-23 14:56:49 +00:00
|
|
|
{% for include in config['css_includes'] %}
|
|
|
|
<link href="/css/{{ include }}" rel="stylesheet">
|
2023-07-25 07:45:30 +00:00
|
|
|
{% endfor %}
|
2023-07-23 12:53:48 +00:00
|
|
|
{% if config.custom_css %}
|
|
|
|
<link href="/css/{{ config.custom_css }}" rel="stylesheet">
|
|
|
|
{% endif %}
|
|
|
|
</head>
|