website/templates/listing.html.tera

13 lines
330 B
Plaintext
Raw Permalink Normal View History

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