ninefolio/templates/Config/list.html.twig

71 lines
1.8 KiB
Twig
Raw Normal View History

2024-09-17 14:02:17 +02:00
{% extends "base.html.twig" %}
{% block body %}
<h1 class="page-header">
CONFIGURATIONS
</h1>
<div class="row mt-4">
<div class="col-md-12">
<h3>Générale</h3>
2024-10-26 12:08:33 +02:00
{{ render(path("app_config_render",{mode:mode,category:"site",userid:-1})) }}
2024-09-17 14:02:17 +02:00
</div>
<div class="col-md-6">
<h3>Couleurs des fonds de page</h3>
2024-10-26 12:08:33 +02:00
{{ render(path("app_config_render",{mode:mode,category:"colorbgbody",userid:-1})) }}
2024-09-17 14:02:17 +02:00
</div>
<div class="col-md-6">
<h3>Polices</h3>
2024-10-26 12:08:33 +02:00
{{ render(path("app_config_render",{mode:mode,category:"font",userid:-1})) }}
2024-09-17 14:02:17 +02:00
</div>
<div class="col-md-6">
<h3>Couleurs des titres </h3>
2024-10-26 12:08:33 +02:00
{{ render(path("app_config_render",{mode:mode,category:"colorfttitle",userid:-1})) }}
2024-09-17 14:02:17 +02:00
</div>
<div class="col-md-6">
<h3>Couleurs de la police </h3>
2024-10-26 12:08:33 +02:00
{{ render(path("app_config_render",{mode:mode,category:"colorftbody",userid:-1})) }}
2024-09-17 14:02:17 +02:00
</div>
<div class="col-md-6">
<h3>Logo</h3>
2024-10-26 12:08:33 +02:00
{{ render(path("app_config_render",{mode:mode,category:"logo",userid:-1})) }}
2024-09-17 14:02:17 +02:00
<h3>Social</h3>
2024-10-26 12:08:33 +02:00
{{ render(path("app_config_render",{mode:mode,category:"social",userid:-1})) }}
2024-09-17 14:02:17 +02:00
</div>
<div class="col-md-6">
<h3>Carrousel</h3>
2024-10-26 12:08:33 +02:00
{{ render(path("app_config_render",{mode:mode,category:"hero",userid:-1})) }}
2024-09-17 14:02:17 +02:00
<h3>Image</h3>
2024-10-26 12:08:33 +02:00
{{ render(path("app_config_render",{mode:mode,category:"image",userid:-1})) }}
2024-09-17 14:02:17 +02:00
</div>
</div>
{% endblock %}
{% block localjavascript %}
$(document).ready(function() {
$('#dataTables').DataTable({
columnDefs: [ { "targets": "no-sort", "orderable": false }, { "targets": "no-string", "type" : "num" } ],
responsive: true,
iDisplayLength: 100,
order: [[ 1, "asc" ]]
});
});
{% endblock %}