site/templates/shortcodes/shells.html

10 lines
287 B
HTML

{% set shell_data = load_data(path="static/shells.toml") %}
<h2>available shells</h2>
<p>As of {{ now() | date(format="%F") }}, the following shells are installed:
<ul id="shells">
{% for sh in shell_data.data %}
<li>{{ sh }}</li>
{% endfor %}
</ul>
</p>