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-12-16 17:08:39 +07:00
|
|
|
<link type="text/css" rel="stylesheet" href="/css/themes/{{ theme }}/colors.css" />
|
2024-01-11 04:35:40 +07:00
|
|
|
{% endblock %}
|