19 lines
646 B
HTML
19 lines
646 B
HTML
|
|
{% extends "base.html" %}
|
||
|
|
{% block title %}{{ title }} — ЭВОСИНК{% endblock %}
|
||
|
|
|
||
|
|
{% block content %}
|
||
|
|
<div class="row justify-center">
|
||
|
|
<div class="col-sm-10 col-md-6 col-lg-5">
|
||
|
|
<article class="card mt-5 text-center">
|
||
|
|
<div class="card-body" style="padding: 2.5rem;">
|
||
|
|
<h1 style="font-size:1.3rem;" class="mb-3">{{ title }}</h1>
|
||
|
|
<p class="text-muted">{{ message }}</p>
|
||
|
|
{% if link %}
|
||
|
|
<a href="{{ link }}" role="button" class="mt-2">{{ link_text }}</a>
|
||
|
|
{% endif %}
|
||
|
|
</div>
|
||
|
|
</article>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
{% endblock %}
|