mirror of
https://github.com/klaussilveira/gitlist.git
synced 2025-11-17 19:20:56 +01:00
18 lines
302 B
Twig
18 lines
302 B
Twig
{% extends 'layout.twig' %}
|
|
{% block title %}GitList{% endblock %}
|
|
|
|
{% block body %}
|
|
{% include 'navigation.twig' %}
|
|
|
|
<div class="container">
|
|
|
|
<div class="alert alert-error">
|
|
<strong>Oops!</strong> {{ message }}
|
|
</div>
|
|
|
|
<hr />
|
|
|
|
{% include 'footer.twig' %}
|
|
</div>
|
|
{% endblock %}
|