{% extends "_default/base.html" %} {% block content %}
{% include "partials/filter_bar.html" %}

{%- set section = get_section(path="people/_index.md") %} {% set path_array = current_path | split(pat="/") %} {% set taxonomy = path_array[1] %} {% set category = path_array[2] %} {{category | replace(from='-', to=' ' ) | title}}

{% for person in section.pages %} {% set page_path = person.path ~ 'index.md' | replace(from='-', to='_') | trim_start_matches(pat="/") %} {% set people = get_section(path="people/_index.md") %} {% set pages_str = people.pages | json_encode() | as_str %} {% if pages_str is containing(person.title) %} {% set page = get_page(path=page_path) %} {% if page.extra.private >= 0 %} {% if page.title != "ThreeFold_Community"%} {% include "partials/person_card.html" %} {% endif %} {% endif %} {% endif %} {% endfor %}

{% if paginator.previous %} {% include "partials/icons/svgPrevPageIcon.html" %}{% include "partials/icons/svgPrevPageIcon.html" %}           {% include "partials/icons/svgPrevPageIcon.html" %}                     {% else %} {% include "partials/icons/svgFirstPageIcon.html" %}{% include "partials/icons/svgFirstPageIcon.html" %}           {% include "partials/icons/svgFirstPageIcon.html" %}                     {% endif %} {% if paginator.next %} {% include "partials/icons/svgNextPageIcon.html" %}           {% include "partials/icons/svgNextPageIcon.html" %}{% include "partials/icons/svgNextPageIcon.html" %} {% else %} {% include "partials/icons/svgLastPageIcon.html" %}           {% include "partials/icons/svgLastPageIcon.html" %}{% include "partials/icons/svgLastPageIcon.html" %} {% endif %}

{% endblock content %}