engelsystem/resources/views/pages/credits.twig

34 lines
1.2 KiB
Twig
Raw Normal View History

2018-09-02 02:13:18 +02:00
{% extends "layouts/app.twig" %}
{% block title %}{{ __('Credits') }}{% endblock %}
{% block content %}
<div class="container">
<h1>Credits</h1>
<div class="row">
2018-12-21 23:12:04 +01:00
{% for title, credit in credits %}
<div class="col-md-4">
<h2>{{ title }}</h2>
{{ credit|markdown }}
</div>
{% endfor %}
2018-09-02 02:13:18 +02:00
<div class="col-md-4">
<h2>Source code</h2>
<p>Version: <i>{{ version }}</i></p>
2018-09-02 02:13:18 +02:00
<p>
2018-12-21 23:12:04 +01:00
The original engelsystem was written by
<a href="https://github.com/cookieBerlin/engelsystem">cookie</a>.
2018-09-02 02:13:18 +02:00
It was then completely rewritten and enhanced by
2018-12-21 23:12:04 +01:00
<a href="https://notrademark.de">msquare</a> (maintainer) and
<a href="https://myigel.name">MyIgel</a>.
2018-09-02 02:13:18 +02:00
</p>
<p>
Please look at the <a href="https://github.com/engelsystem/engelsystem/graphs/contributors">
2018-12-21 23:12:04 +01:00
contributor list on GitHub</a> for a complete list.
2018-09-02 02:13:18 +02:00
</p>
</div>
</div>
</div>
{% endblock %}