48 lines
2 KiB
HTML
48 lines
2 KiB
HTML
{% load static %}
|
|
{% load dbsetting %}
|
|
{% dbsetting "core.title" as sitetitle %}
|
|
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta http-equiv="Content-Language" content="en">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
<title>{% if title %}{{ title }} - {% endif %}{{ sitetitle }}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, shrink-to-fit=no"
|
|
/>
|
|
|
|
|
|
<!-- Disable tap highlight on IE -->
|
|
<meta name="msapplication-tap-highlight" content="no">
|
|
|
|
<link href="{% static "backend/css/main.css" %}" rel="stylesheet"></head>
|
|
|
|
<body>
|
|
<div class="app-container app-theme-white body-tabs-shadow">
|
|
<div class="app-container">
|
|
<div class="h-100">
|
|
<div class="h-100 no-gutters row">
|
|
<div class="d-none d-lg-block col-lg-4">
|
|
<div class="slider-light">
|
|
<div class="slick-slider">
|
|
<div>
|
|
<div class="position-relative h-100 d-flex justify-content-center align-items-center bg-deep-blue" tabindex="-1">
|
|
<div class="slide-img-bg"></div>
|
|
<div class="slider-content"><h3>{{ sitetitle }}</h3>
|
|
<p>{{ sitetitle }} is like a dream. Some think it's too good to be true!</p></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="h-100 d-flex bg-white justify-content-center align-items-center col-md-12 col-lg-8">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript" src="{% static "backend/scripts/main.js" %}"></script></body>
|
|
</html>
|