etalon_backend/themes/etalon/layouts/default.htm

109 lines
3.7 KiB
HTML
Raw Permalink Normal View History

2021-12-22 08:07:43 +00:00
[staticPage]
useContent = 1
default = 0
[localePicker]
forceUrl = 1
==
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Эталон</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="{{'assets/css/slick.css'|theme}}">
<link rel="stylesheet" href="{{'assets/css/slick-theme.css'|theme}}">
<link rel="stylesheet" href="{{'assets/css/style.css'|theme}}">
<!-- <link rel="stylesheet" href="{{'assets/css/tablesort.css'|theme}}"> -->
<link rel="stylesheet" href="{{'assets/css/bootSort.min.css'|theme}}">
{% styles %}
</head>
<body>
{% partial 'header'%}
{% page %}
{% partial 'footer'%}
<script src="{{'assets/js/jquary.js'|theme}}"></script>
<script src="{{'assets/js/slick.js'|theme}}"></script>
<script src="{{'assets/js/slider.js'|theme}}"></script>
<script src="{{'assets/js/main.js'|theme}}"></script>
<!-- <script src="js/sort-table.js"></script> -->
<!-- <script src="{{'assets/js/table_sort.js'|theme}}"></script> -->
<script src="{{'assets/js/bundel.min.js'|theme}}"></script>
<script src="{{'assets/js/jquery.dataTables.min.js'|theme}}"></script>
<script src="{{'assets/js/bootSort.min.js'|theme}}"></script>
<script>
// Data tables
$(document).ready(function () {
$('#example5').DataTable({
"order": [
[0, "asc"]
],
"pagingType": "simple",
"info": false,
responsive: {
breakpoints: [{
name: 'bigdesktop',
width: Infinity
},
{
name: 'meddesktop',
width: 1480
},
{
name: 'smalldesktop',
width: 1280
},
{
name: 'medium',
width: 1188
},
{
name: 'tabletl',
width: 1024
},
{
name: 'btwtabllandp',
width: 848
},
{
name: 'tabletp',
width: 768
},
{
name: 'mobilel',
width: 480
},
{
name: 'mobilep',
width: 320
}
]
},
"lengthChange": false,
"pageLength": 50,
"language": {
"url": "dataTables.russian.lang",
"search": "Поиск:",
"paginate": {
"first": "Первая",
"previous": "Предыдущая",
"next": "Следующая",
"last": "Последняя"
},
}
});
});
</script>
{% framework extras %}
{% scripts %}
</body>
</html>