blob: c943cfa6096e8e4d2e46dd518040bac958c44736 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
{% load static %}
<!DOCTYPE html>
<html lang="{{ request.LANGUAGE_CODE }}">
<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" />
<meta name="title" content="Shifoo - {{ request.meta.title }}" />
<meta name="description" content="{{ request.meta.description }}" />
<meta name="image" content="{{ request.meta.image }}" />
<meta name="url" content="{{ request.meta.url }}" />
<meta property="og:title" content="Shifoo - {{ request.meta.title }}" />
<meta property="og:description" content="{{ request.meta.description }}" />
<meta property="og:image" content="{{ request.meta.image }}" />
<meta property="og:url" content="{{ request.meta.url }}" />
<meta property="robots" content="{{ request.meta.robots }}" />
<title>Shifoo - {{ request.meta.title }}</title>
<link rel="apple-touch-icon" sizes="180x180" href="{% static 'images/favicons/apple-touch-icon.png' %}" />
<link rel="icon" type="image/png" sizes="32x32" href="{% static 'images/favicons/favicon-32x32.png' %}" />
<link rel="icon" type="image/png" sizes="16x16" href="{% static 'images/favicons/favicon-16x16.png' %}" />
<link rel="manifest" href="{% static 'images/favicons/site.webmanifest' %}" />
<link type="text/css" rel="stylesheet" href="{% static 'css/shared/core.css' %}" />
{% block head %}
{% endblock %}
</head>
<body>
<video autoplay muted loop id="video-background" preload="auto">
<source src="{% static 'videos/background_.mp4' %}" type="video/mp4" />
</video>
<div id="video-overlay"></div>
<div id="body-wrapper">
{% include 'shared/header.html' %}
<div id="content-wrapper">
<div id="left-sidebar" {% if user.is_authenticated %}style="border-top-left-radius: 0px;"{% endif %}>
{% include 'shared/left_sidebar.html' %}
</div>
<div id="main-content">
{% block content %}
{% endblock %}
</div>
<div id="right-sidebar">
{% include 'shared/right_sidebar.html' %}
</div>
</div>
<div id="footer">
{% include 'shared/footer.html' %}
</div>
</div>
<div id="scanlines"></div>
</body>
{% block scripts %}
{% endblock %}
<script src="{% static 'js/libs/pamphlet.js' %}"></script>
<script type="text/javascript">
new Pamphlet();
</script>
</html>
|