mirror of
https://github.com/klaussilveira/gitlist.git
synced 2026-05-07 04:56:51 +02:00
18 lines
303 B
Twig
18 lines
303 B
Twig
{% extends 'layout.twig' %}
|
|
{% block title %}GitList{% endblock %}
|
|
|
|
{% block body %}
|
|
{% include 'navigation.twig' %}
|
|
|
|
<div class="container">
|
|
|
|
<div class="alert alert-danger">
|
|
<strong>Oops!</strong> {{ message }}
|
|
</div>
|
|
|
|
<hr />
|
|
|
|
{% include 'footer.twig' %}
|
|
</div>
|
|
{% endblock %}
|