(Grav GitSync) Automatic Commit from RealStickman

This commit is contained in:
RealStickman 2022-06-23 16:52:01 +02:00 committed by GitSync
parent 8deeda392f
commit 7538ee8eba
3 changed files with 29 additions and 0 deletions

Binary file not shown.

View File

@ -66,3 +66,32 @@
</section>
</div>
</div>
<div class="scrollbar-outer">
<div class="highlightable">
{% if theme_config.top_level_version %}
{% for slug, ver in pages.children %}
{{ macro.version(ver) }}
<ul id="{{ slug }}" class="topics">
{{ macro.loop(ver, '') }}
</ul>
{% endfor %}
{% else %}
<ul class="topics">
{% if theme_config.root_page %}
{{ macro.loop(page.find(theme_config.root_page), '') }}
{% else %}
{{ macro.loop(pages, '') }}
{% endif %}
</ul>
{% endif %}
<hr />
<a class="padding" href="#" data-clear-history-toggle><i
class="fa fa-fw fa-history"></i> {{ 'THEME_LEARN2_CLEAR_HISTORY'|t }}</a><br/>
<section id="footer">
<p>{{ 'THEME_LEARN2_BUILT_WITH_GRAV'|t|raw }}</p>
</section>
</div>
</div>