Files
myriad/myriad/templates/index.html
cube 5d770587b4 add and remove front
list shows up in a header bar on the home page
2026-03-17 13:26:49 +00:00

10 lines
314 B
HTML

{% extends 'base.html' %}
{% block title %}Welcome{% endblock %}
{% block content %}
<div id="frontbanner" class="heading">
<b>currently fronting: </b> {% for member in front_list %} {{ member[3] }} {% if front_list.index(member) != front_list|length -1 %}&{% endif %} {% endfor %}
</div>
{% endblock %}