17 lines
497 B
HTML
17 lines
497 B
HTML
{% extends 'main/base.html' %}
|
|
|
|
{% block content %}
|
|
<div class="mt-5 container justify-content-center d-flex">
|
|
<div class="card text-center" style="width: 80rem;">
|
|
<div class="card-body">
|
|
<blockquote class="blockquote mb-0">
|
|
<h1>"{{ quote.text }}"</h1>
|
|
<footer class="blockquote-footer">
|
|
<h2>{{ quote.author.name }}</h2>
|
|
</footer>
|
|
</blockquote>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %} |