franca-theme-blog/templates/components/head.j2

14 lines
549 B
Plaintext
Raw Normal View History

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-22 13:18:15 +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">
{% endfor %}
2023-07-23 12:53:48 +00:00
{% if config.custom_css %}
<link href="/css/{{ config.custom_css }}" rel="stylesheet">
{% endif %}
</head>