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

14 lines
549 B
Django/Jinja

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ title }}</title>
<meta name="title" content="{{ title }}" />
<meta name="description" content="{{ description | striptags }}" />
<link href="/css/style.css" rel="stylesheet">
{% for include in config['css_includes'] %}
<link href="/css/{{ include }}" rel="stylesheet">
{% endfor %}
{% if config.custom_css %}
<link href="/css/{{ config.custom_css }}" rel="stylesheet">
{% endif %}
</head>