12 lines
268 B
HTML
12 lines
268 B
HTML
{% extends 'participant_index.html' %}
|
|
{% block content %}
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<h1>{{ title }}</h1>
|
|
{% for p in paragraph %}
|
|
<p style="font-size:20pt">{{ p }}</p>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|