60 lines
2.3 KiB
HTML
60 lines
2.3 KiB
HTML
{% macro articles(_articles, showLevels) %}
|
|
{% for article in _articles %}
|
|
{% set articleToString = article | dump %}
|
|
<li class="chapter
|
|
{% if article.path == file.path and not article.anchor %}active{% endif %} {% if articleToString.indexOf('"'+file.path) > -1 %} selected {% endif %} {% if showLevels == false and article.depth != 1 %} hide {% endif %}"
|
|
data-level="{{ article.level }}"
|
|
{% if article.path %}data-path="{{ article.path|resolveFile }}"{% endif %}>
|
|
|
|
{% if article.path and getPageByPath(article.path) %}
|
|
<a href="{{ article.path|resolveFile }}{{ article.anchor }}">
|
|
{% elif article.url %}
|
|
<a target="_blank" href="{{ article.url }}">
|
|
{% else %}
|
|
<span>
|
|
{% endif %}
|
|
{% if article.level != "0" and config.pluginsConfig['theme-default'].showLevel %}
|
|
<b>{{ article.level }}.</b>
|
|
{% endif %}
|
|
{{ article.title }}
|
|
{% if article.path or article.url %}
|
|
</a>
|
|
{% else %}
|
|
</span>
|
|
{% endif %}
|
|
|
|
{% if article.articles.length > 0 %}
|
|
<ul class="articles">
|
|
{% if articleToString.indexOf('"'+file.path) > -1 and not config.pluginsConfig["theme-gestalt "].doNotHideChildrenChapters %} {% set showLevels = true %} {% endif %}
|
|
{{ articles(article.articles, showLevels ) }}
|
|
</ul>
|
|
{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
{% endmacro %}
|
|
|
|
<ul class="summary">
|
|
{% set _divider = false %}
|
|
{% if config.links.sidebar %}
|
|
{% for linkTitle, link in config.links.sidebar %}
|
|
{% set _divider = true %}
|
|
<li>
|
|
<a href="{{ link }}" target="_blank" class="custom-link">{{ linkTitle }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if _divider %}
|
|
<li class="divider"></li>
|
|
{% endif %}
|
|
|
|
{% for part in summary.parts %}
|
|
{% if part.title %}
|
|
{% set partToString = part | dump %}
|
|
<li class="header {% if partToString.indexOf('"'+file.path) > -1 %} selected {% endif %}">{{ part.title }}</li>
|
|
{% elif not loop.first %}
|
|
<li class="divider"></li>
|
|
{% endif %}
|
|
{{ articles(part.articles, false) }}
|
|
{% endfor %}
|
|
</ul>
|