57 lines
1.7 KiB
HTML
57 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{% if page.title %}{{ page.title }} - {% endif %}{{ config.site_name }}</title>
|
|
<link rel="stylesheet" href="/~tasiaiso/style.css">
|
|
<!-- <link rel="icon" type="image/svg+xml" href="/images/favicon.svg"> -->
|
|
<link rel="icon" type="image/png" href="/~tasiaiso/images/favicon.png">
|
|
<!-- <link rel="icon" type="image/x-icon" href="/images/favicon.ico"> -->
|
|
</head>
|
|
<body>
|
|
{% if not page.is_homepage %}
|
|
<a href="/">root</a>
|
|
<br><br>
|
|
{% endif %}
|
|
|
|
<!-- {% if page.is_homepage %} -->
|
|
pages
|
|
{% if nav|length>1 %}
|
|
<ul>
|
|
{% for nav_item in nav %}
|
|
{% if nav_item.children %}
|
|
<li>{{ nav_item.title }}
|
|
<ul>
|
|
{% for nav_item in nav_item.children %}
|
|
<li class="{% if nav_item.active %}current{% endif %}">
|
|
<a href="{{ nav_item.url|url }}">{{ nav_item.title }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</li>
|
|
{% else %}
|
|
<li class="{% if nav_item.active %}current{% endif %}">
|
|
<a href="{{ nav_item.url|url }}">{{ nav_item.title }}</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
<!-- {% endif %} -->
|
|
|
|
|
|
{% if not page.is_homepage %}
|
|
table of contents
|
|
<ul>
|
|
{% for toc_item in page.toc %}
|
|
<li><a href="{{ toc_item.url }}">{{ toc_item.title }}</a></li>
|
|
{% for toc_item in toc_item.children %}
|
|
<li><a href="{{ toc_item.url }}">{{ toc_item.title }}</a></li>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
|
|
|
|
{{ page.content }}
|
|
</body>
|
|
</html> |