website/templates/listing.html.tera
Joey Hines 26575adb87 Added the ability to have directory listings and moved to rst
+ Added projects/website.rst to describe the site
+ Updated templates
+ Added more comments
2020-02-21 21:54:17 -06:00

13 lines
320 B
Plaintext

{% 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 %}