You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
623 B
30 lines
623 B
{% extends 'bootstrap/base.html' %} |
|
|
|
{% block title %} |
|
Link Shortener |
|
{% endblock %} |
|
|
|
{% block content %} |
|
<div class="container"> |
|
<br> |
|
<div class="col-md-3"></div> |
|
<div class="col-md-5"> |
|
{% with messages = get_flashed_messages() %} |
|
{% if messages %} |
|
{% for message in messages %} |
|
<div class="alert alert-info" role="alert">{{ message }}</div> |
|
{% endfor %} |
|
{% endif %} |
|
{% endwith %} |
|
|
|
{# application content needs to be provided in the app_content block #} |
|
{% block app_content %}{% endblock %} |
|
</div> |
|
|
|
</div> |
|
{% endblock %} |
|
|
|
{% block scripts %} |
|
{{ super() }} |
|
{% endblock %} |
|
|
|
|