{% extends "base.html" %} {% block content %}

Things I find value in sharing

{% set data = load_data(path="content/external/external.toml") %} {% for category in data.categories %}

{{ category.title }}

{% if category.note is defined %}

{{ category.note | markdown(inline = true) | safe }}

{% endif %}
{% endfor %}
{% endblock content %}