initial commit

This commit is contained in:
2021-11-21 12:28:47 -06:00
parent 9445940df2
commit 05232c7a31
15 changed files with 344 additions and 16 deletions

View File

@@ -4,10 +4,10 @@
{% block content %}
<h1>{{ title }}</h1>
<ol class="list-group">
{#<ol class="list-group">#}
{% for item in object_list %}
<li class="list-group-item">
<span class="fs-5 fw-bold">{{ item.formatted_title }}</span>
<ul class="card">
<span class="card-title">{{ item.formatted_title }}</span>
<span class="fs-6">{{ item.subtitle }}</span>
{# {% if item.body %}#}
{# <br><span class="fs-6">{{ item.body }}</span>#}
@@ -17,7 +17,7 @@
{% for button in item.buttons %}
<a class="btn btn-primary btn-sm" href="{{ button.href }}" role="button">{{ button.label }}</a>
{% endfor %}
</li>
</ul>
{% endfor %}
</ol>
{% endblock %}