aboutsummaryrefslogtreecommitdiff
path: root/templates/shared/base.html
blob: cb348109b44134db5920a8710a59f2dca6a16cbb (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
{% 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/core.css' %}" />
    <link rel="preconnect" href="https://fonts.googleapis.com" />
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
    <link href="https://fonts.googleapis.com/css2?family=Mali:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet" />
    {% 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">
          {% 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>
  </body>
  {% block scripts %}

  {% endblock %}
</html>