website/templates/listing.html.tera

13 lines
320 B
Plaintext
Raw Normal View History

{% extends "base" %}
{% block command %}
ls {{ page_data.site_file.link_name }}
{% endblock command %}
{% block content %}
{% for link in page_data.links %}
<br>
<a class="link" href="{{ page_data.site_file.link_name}}/{{ link.link_name }}">{{ link.link_name }}</a>&nbsp;&nbsp;
{% endfor %}
<br>
{% endblock content %}