Translated using Weblate (Turkish)
[phpmyadmin.git] / templates / home / themes.twig
blob3fbc4b4e40dbe7264c9d6e70d710eed44a02167c
1 <form method="post" action="{{ url('/themes/set') }}" class="disableAjax">
2   {{ get_hidden_inputs() }}
3   <div class="row row-cols-1 row-cols-md-2 row-cols-lg-3 row-cols-xl-4 g-4">
4     {% for theme in themes %}
5       <div class="col">
6         <div class="card">
7           <img src="./themes/{{ theme.id }}/screen.png" class="card-img-top" alt="{{ 'Screenshot of the %s theme.'|trans|format(theme.name) }}">
8           <div class="card-body">
9             <h5 class="card-title">{{ theme.name }} <small>({{ theme.version }})</small></h5>
10           </div>
11           <div class="card-footer">
12             <button type="submit" class="btn btn-primary" name="set_theme" value="{{ theme.id }}">{% trans %}Take it{% notes %}Choose the theme button in the themes list modal{% endtrans %}</button>
13           </div>
14         </div>
15       </div>
16     {% endfor %}
17   </div>
18 </form>