{% extends "base.html" %}
{% block content %}
Things I find value in sharing
{% set data = load_data(path="content/external/external.toml") %}
{% for k, v in data %}
-
{{ v.title }}
{% if v.author is defined %} by {{ v.author }}{% endif %}{% if v.archive is defined %} - Archive {% endif %}{% if v.suffix is defined %} ({{ v.suffix }}){% endif %}
{% endfor %}
{% endblock content %}