aboutsummaryrefslogtreecommitdiff
path: root/templates/shared/base.html
diff options
context:
space:
mode:
authorBobby <[email protected]>2024-10-16 15:19:52 -0400
committerBobby <[email protected]>2024-10-16 15:19:52 -0400
commite71f872fd9220a4dfb794e1c91d8e8087002b937 (patch)
treef9f9ed1638012365100b7ba3ddad3541a1fc0a99 /templates/shared/base.html
parentcf21403a416a2a0b21acaa3e27bc32a9618b859c (diff)
downloadthatcomputerscientist-e71f872fd9220a4dfb794e1c91d8e8087002b937.tar.xz
thatcomputerscientist-e71f872fd9220a4dfb794e1c91d8e8087002b937.zip
i made the header and something extra
Diffstat (limited to 'templates/shared/base.html')
-rw-r--r--templates/shared/base.html55
1 files changed, 55 insertions, 0 deletions
diff --git a/templates/shared/base.html b/templates/shared/base.html
new file mode 100644
index 00000000..cb348109
--- /dev/null
+++ b/templates/shared/base.html
@@ -0,0 +1,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>