PalletControl/templates/chunks/head.html

15 lines
680 B
HTML

<head>
<meta charset="{{ config['charset'] }}">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>{{ config['title'] }}</title>
<!-- Favicon icon -->
<link rel="icon" type="image/png" sizes="16x16" href="{{ url_for('static', filename='images/favicon.png') }}">
<!-- Custom Stylesheet -->
<link href="{{ url_for('static', filename='css/style.css') }}" rel="stylesheet">
<!-- DataTable -->
{% if datatable %}
<link href="{{ url_for('static', filename='plugins/tables/css/datatable/dataTables.bootstrap4.min.css') }}" rel="stylesheet">
{% endif %}
</head>