10 lines
314 B
HTML
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 %} |