Files
benchcoach-django/templates/home.html
Tony b7012b77df refactor for less duplication
refactored to use a common 'list.html'
refactored to allow some modularization (using blocks)
2021-11-07 15:11:09 -06:00

11 lines
234 B
HTML

{% extends "base.html" %}
{% block title %}Bench Coach Home{% endblock %}
{% block content %}
{% for page in pages %}
<li><a style="text-transform:capitalize;" href="{% url page %}">{{ page }} </a></li>
{% endfor %}
{% endblock %}