pot/author/project/system/views/themes/default/head.html

24 lines
1.0 KiB
HTML
Raw Normal View History

2024-01-11 04:35:40 +07:00
{% block title %}
2024-12-16 16:54:55 +07:00
<title>{% if head.title != empty %}{{ head.title }}{% else %}${REPO_NAME} by ${REPO_OWNER}{% endif %}</title>
2024-01-11 04:35:40 +07:00
{% endblock %}
{% block meta %}
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
{% for meta in head.metas %}
2024-12-16 16:54:55 +07:00
<meta {% for name, value in meta.attributes %}{{ name }}="{{ value }}" {% endfor %}>
2024-01-11 04:35:40 +07:00
{% endfor %}
{% endblock %}
{% block css %}
2024-12-17 14:25:10 +07:00
{% for element in css %}
<link type="text/css" rel="stylesheet" {% if element.href %}href="{{ element.href }}" {% endif %} />
{% endfor %}
2024-12-16 18:33:58 +07:00
<link type="text/css" rel="stylesheet" href="/css/themes/default/system.css" />
<link type="text/css" rel="stylesheet" href="/css/themes/default/header.css" />
<link type="text/css" rel="stylesheet" href="/css/themes/default/main.css" />
<link type="text/css" rel="stylesheet" href="/css/themes/default/aside.css" />
<link type="text/css" rel="stylesheet" href="/css/themes/default/footer.css" />
<link type="text/css" rel="stylesheet" href="/css/themes/default/colors.css" />
2024-01-11 04:35:40 +07:00
{% endblock %}