forked from Deuxfleurs/guide.deuxfleurs.fr
Gestion des poids propres
This commit is contained in:
parent
dfa89254a9
commit
f8b5a2e1ba
1 changed files with 70 additions and 30 deletions
|
@ -3,47 +3,87 @@
|
|||
{% set sec = get_section(path=sec) %}
|
||||
{% set maxlevel = hierarchy | length %}
|
||||
|
||||
{# Ici on regarde si toutes les sous-sections et pages contenues ont #}
|
||||
{# une variable weight_custom #}
|
||||
{% set temoin = true %}
|
||||
{% set liste = [] %}
|
||||
{% if sec.subsections %}
|
||||
{% for s in sec.subsections %}
|
||||
{% set p = get_section(path=s) %}
|
||||
<div class="toc-item">
|
||||
{% if p.subsections or p.pages %}
|
||||
{% if p.path == current.path %}
|
||||
<a class="subtext" href="{{ p.permalink | safe}}">‣ <b>{{ p.title }}</b></a>
|
||||
{% elif hierarchy is containing(s) %}
|
||||
<a class="subtext" href="{{ p.permalink | safe}}">‣ {{ p.title }}</a>
|
||||
{% set s_temp = get_section(path=s) %}
|
||||
{% if not s_temp.extra.weight_custom %}
|
||||
{% set_global temoin = false %}
|
||||
{% else %}
|
||||
{% set_global liste = liste | concat(with=s_temp) %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
{% if sec.pages %}
|
||||
{% for p in sec.pages %}
|
||||
{% if not p.extra.weight_custom %}
|
||||
{% set_global temoin = false %}
|
||||
{% else %}
|
||||
{% set_global liste = liste | concat(with=p) %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
{# Si toutes les sous-sections et pages ont une variable weight_custom, #}
|
||||
{# on classe selon elle. Sinon, on utilise la méthode classique. #}
|
||||
{% if temoin %}
|
||||
// classer ici
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{% else %}
|
||||
{% if sec.subsections %}
|
||||
{% for s in sec.subsections %}
|
||||
{% set p = get_section(path=s) %}
|
||||
<div class="toc-item">
|
||||
{% if p.subsections or p.pages %}
|
||||
{% if p.path == current.path %}
|
||||
<a class="subtext" href="{{ p.permalink | safe}}">‣ <b>{{ p.title }}</b></a>
|
||||
{% elif hierarchy is containing(s) %}
|
||||
<a class="subtext" href="{{ p.permalink | safe}}">‣ {{ p.title }}</a>
|
||||
{% else %}
|
||||
<a class="subtext" href="{{ p.permalink | safe}}">‣ {{ p.title }}</a>
|
||||
{% endif %}
|
||||
{% if hierarchy is containing(s) or current.path == p.path %}
|
||||
{% if level + 1 < maxlevel %}
|
||||
<div class="nav-subsection">
|
||||
{{ nav::navsection(hierarchy=hierarchy,level=level + 1,current=current) }}
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% else %}
|
||||
<a class="subtext" href="{{ p.permalink | safe}}">‣ {{ p.title }}</a>
|
||||
{% endif %}
|
||||
{% if hierarchy is containing(s) or current.path == p.path %}
|
||||
{% if level + 1 < maxlevel %}
|
||||
<div class="nav-subsection">
|
||||
{{ nav::navsection(hierarchy=hierarchy,level=level + 1,current=current) }}
|
||||
</div>
|
||||
{% if p.path == current.path %}
|
||||
<a class="subtext" href="{{p.permalink | safe}}"><b>{{ p.title }}</b></a>
|
||||
{% else %}
|
||||
<a class="subtext" href="{{p.permalink | safe}}">{{ p.title }}</a>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% else %}
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
{% if sec.pages %}
|
||||
{% for p in sec.pages %}
|
||||
<div class="toc-item">
|
||||
{% if p.path == current.path %}
|
||||
<a class="subtext" href="{{p.permalink | safe}}"><b>{{ p.title }}</b></a>
|
||||
{% else %}
|
||||
<a class="subtext" href="{{p.permalink | safe}}">{{ p.title }}</a>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
{% if sec.pages %}
|
||||
{% for p in sec.pages %}
|
||||
<div class="toc-item">
|
||||
{% if p.path == current.path %}
|
||||
<a class="subtext" href="{{p.permalink | safe}}"><b>{{ p.title }}</b></a>
|
||||
{% else %}
|
||||
<a class="subtext" href="{{p.permalink | safe}}">{{ p.title }}</a>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endmacro navsection %}
|
||||
|
||||
{% macro navmenu(current) %}
|
||||
|
|
Loading…
Reference in a new issue