14 lines
252 B
HTML
14 lines
252 B
HTML
{% extends "base.html" %}
|
|
{% block title %} {{ title }}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>{{ title }}</h1>
|
|
<ol class="list-group">
|
|
{% for item in items %}
|
|
<li class="list-group-item">
|
|
{{ item }}
|
|
</li>
|
|
{% endfor %}
|
|
</ol>
|
|
{% endblock %} |