initial commit. displays simple hierarchy and lists of models. includes fixtures for initial data.
This commit is contained in:
17
templates/home.html
Normal file
17
templates/home.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
{% load bootstrap5 %}
|
||||
{% bootstrap_css %}
|
||||
{% bootstrap_javascript %}
|
||||
<meta charset="UTF-8">
|
||||
<title>Bench Coach</title>
|
||||
</head>
|
||||
<h1>Bench Coach</h1>
|
||||
{% for page in pages %}
|
||||
<li><a style="text-transform:capitalize;" href="{% url page %}">{{ page }} </a></li>
|
||||
{% endfor %}
|
||||
<body>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user