engelsystem/resources/views/pages/credits.twig

34 lines
1.1 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>
2018-09-02 02:13:18 +02:00
<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 }}
2018-12-21 23:12:04 +01:00
</div>
{% endfor %}
2018-09-02 02:13:18 +02:00
<div class="col-md-4">
<h2>{{ __('Source code') }}</h2>
<p>{{ __('Version: _%s_', [version])|markdown }}</i></p>
2018-09-02 02:13:18 +02:00
<p>
{{ __('The original engelsystem was written by
[cookie](https://github.com/cookieBerlin/engelsystem).
It was then completely rewritten and enhanced by [msquare](https://notrademark.de) (maintainer) and
[MyIgel](https://myigel.name).')|markdown }}
2018-09-02 02:13:18 +02:00
</p>
<p>
{{ __('Please have a look at the
[contributors list on GitHub](https://github.com/engelsystem/engelsystem/graphs/contributors)
for a complete list.')|markdown }}
2018-09-02 02:13:18 +02:00
</p>
</div>
</div>
</div>
{% endblock %}