Socialify

Folder ..

Viewing base.html
27 lines (27 loc) • 1.3 KB

 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
{% load static %}
<!DOCTYPE html>
<html lang="en">
  <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, maximum-scale=1.0, user-scalable=no">
    <meta name="description" content="{{ request.meta.description }}" />
    <meta name="robots" content="{{ request.meta.robots }}" />
    <meta property="og:title" content="{{ 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 }}" />
    <link rel="icon" href="{% static 'icons/favicon.ico' %}" />
    <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=Karla:ital,wght@0,200..800;1,200..800&display=swap" rel="stylesheet"/>
    <link rel="stylesheet" href="{% static 'css/main.css' %}" />
    {% block css %} {% endblock %}
    <title>{{ request.meta.title }}</title>
  </head>
  <body class="bg-black text-white">
    {% include "partials/navbar.html" %}
    <main class="mx-auto">{% block content %} {% endblock %}</main>
  </body>
  {% block scripts %} {% endblock %}
</html>