25 lines
927 B
HTML
25 lines
927 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
|
<title>{{ config.SEO_TITLE }}</title>
|
||
|
|
<!-- Le styles -->
|
||
|
|
<link href="{{ buildStaticUrl('/bootstrap/bootstrap.min.css') }}" rel="stylesheet">
|
||
|
|
<link href="{{ buildStaticUrl('/font-awesome/css/font-awesome.min.css') }}" rel="stylesheet">
|
||
|
|
<link href="{{ buildStaticUrl('/css/style.css') }}" rel="stylesheet">
|
||
|
|
{%block css %}{% endblock %}
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body class="gray-bg">
|
||
|
|
{% block content %}{% endblock %}
|
||
|
|
|
||
|
|
<script src="{{ buildStaticUrl('/plugins/jquery-2.1.1.js') }}"></script>
|
||
|
|
<script src="{{ buildStaticUrl('/bootstrap/bootstrap.min.js') }}"></script>
|
||
|
|
<script src="{{ buildStaticUrl('/plugins/layer/layer.js') }}"></script>
|
||
|
|
<script src="{{ buildStaticUrl('/js/common.js') }}"></script>
|
||
|
|
{%block js %}{% endblock %}
|
||
|
|
</body>
|
||
|
|
</html>
|