added pagelist for taxonomy nav between pages and pageBox
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
{% set category = path_array[2] %}
|
||||
The Latest from ThreeFold
|
||||
{% if taxonomy == "categories" %} -
|
||||
{{category | replace(from='-', to=' ' ) | title}}
|
||||
{{category | replace(from='-', to=' ' ) | title}}
|
||||
{% endif %}
|
||||
</h1>
|
||||
<div>
|
||||
|
31
templates/partials/pageList.html
Normal file
31
templates/partials/pageList.html
Normal file
@@ -0,0 +1,31 @@
|
||||
|
||||
<div id="list"></div>
|
||||
<div class="mx-40 flex justify-around text-center">
|
||||
<a href="/join-us#list">All</a>
|
||||
{% set taxonomy = get_taxonomy(kind="roles") %}
|
||||
{% set roles = taxonomy.items %}
|
||||
{% for role in roles %}
|
||||
{% set path = role.name | slugify %}
|
||||
{% set fullpath = "/roles/" ~ path ~ "#list" %}
|
||||
<a href={{fullpath}}> {{role.name}} </a>
|
||||
{% endfor %}
|
||||
</div>
|
||||
<hr>
|
||||
|
||||
<div class="pt-16">
|
||||
<div class="mx-20 flex">
|
||||
{% if paginator %}
|
||||
{% for page in paginator.pages %}
|
||||
<div class="w-3/12 m-8" >
|
||||
{% include "partials/pageBox.html" %}
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
{% for page in section.pages %}
|
||||
<div class="w-3/12 m-8" >
|
||||
{% include "partials/pageBox.html" %}
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
Reference in New Issue
Block a user