{% extends "section.html" %} {% import 'macros/card.html' as macros_listing -%} {% block body %} {% set page_class = "app-list" %} {% endblock body %} {% block header %} {# This value is matched by the config.extra.menu.main~section #} {% set current_section = "apps" %} {{ macros_header::header(current_section=current_section)}} {% endblock header %} {% block content %}
{% set apps_section = get_section(path="apps/_index.md") %} Quick facts {% set posts = apps_section.pages | sort(attribute="date") | reverse %}

We currently list {{ posts | length }} apps.

Latest additions

    {% for post in posts | slice(end=5) %}
  • {{ post.title }}
  • {% endfor %}

Recently updated

{% set updated_posts = apps_section.pages | filter(attribute="updated") | sort(attribute="updated") | reverse %}
    {% for post in updated_posts | slice(end=5) %}
  • {{ post.title }}
  • {% endfor %}

Filter by

{% for taxonomy in config.taxonomies %} {% endfor %}

{{ section.title }}

{{ section.content | safe }}
{{ macros_listing::listing_card() }}
{% endblock content %}