blob: 280b01ffaca01f6a5825cc9a3569ad4783093fac (
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
{% 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 }}" />
<meta name="keywords" content="{{ request.meta.keywords }}" />
<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' %}"
/>
<link
type="text/css"
rel="stylesheet"
href="{% static 'css/shared/fonts.css' %}"
/>
<link
type="text/css"
rel="stylesheet"
href="{% static 'css/shared/scanlines.css' %}"
/>
<link
type="text/css"
rel="stylesheet"
href="{% static 'css/shared/sidebar.css' %}"
/>
<link
type="text/css"
rel="stylesheet"
href="{% static 'css/kawaiibeats/kawaiibeats.css' %}"
/>
{% block head %}{% endblock head %}
</head>
<body>
<video autoplay muted loop id="video-background" preload="auto">
<source src="{% static 'videos/background_.webm' %}" type="video/webm" />
</video>
<div id="video-overlay"></div>
<div id="body-wrapper">
{% include "_partials/header.html" %}
<div id="content-wrapper">
<div
id="left-sidebar"
style="{% if user.is_authenticated %}border-top-left-radius: 0px;
{% endif %}"
>
{% include "_partials/left_sidebar.html" %}
</div>
<div id="main-content">{% block content %}{% endblock content %}</div>
<div id="right-sidebar">
{% include "_partials/right_sidebar.html" %}
</div>
</div>
<div id="footer">{% include "_partials/footer.html" %}</div>
</div>
<div id="scanlines"></div>
<div id="global-alert" class="global-alert">
<div class="hologram-text"></div>
<div class="global-alert-emitter"></div>
<div class="global-alert-light"></div>
</div>
</body>
{% block scripts %}{% endblock scripts %}
<script
type="text/javascript"
src="{% static 'js/libs/pamphlet.js' %}"
></script>
<script type="text/javascript" src="{% static 'js/core/base.js' %}"></script>
</html>
|