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

20 lines
862 B
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-16 16:59:26 +07:00
<link type="text/css" rel="stylesheet" href="/css/themes/{{ theme }}/system.css" />
<link type="text/css" rel="stylesheet" href="/css/themes/{{ theme }}/header.css" />
2024-12-16 16:54:55 +07:00
<link type="text/css" rel="stylesheet" href="/css/themes/{{ theme }}/main.css" />
2024-12-16 16:59:26 +07:00
<link type="text/css" rel="stylesheet" href="/css/themes/{{ theme }}/aside.css" />
<link type="text/css" rel="stylesheet" href="/css/themes/{{ theme }}/footer.css" />
2024-01-11 04:35:40 +07:00
{% endblock %}