Files
BPLabs/templates/participant_home.html
2019-02-02 15:14:29 +00:00

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 %}