summaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html27
1 files changed, 21 insertions, 6 deletions
diff --git a/templates/base.html b/templates/base.html
index 21dd0aa..d0361ce 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -2,14 +2,27 @@
<html lang="en">
<head>
{% block head %}
- <link rel="stylesheet" href="https://unpkg.com/latex.css/style.min.css" />
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta http-equiv="content-type" content="text/html; charset=utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
+ <meta name="theme-color" content="#6a9fb5">
+
+ <title>{% block title %}{% endblock %}</title>
+
+ <!--
+ <link rel="stylesheet" href="https://unpkg.com/latex.css/style.min.css" />
+ -->
+
+ <link rel="stylesheet" href="/assets/c-hyde.css" />
+
+ <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface">
+
<link rel="stylesheet" href="/assets/main.css" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>{% block title %}{% endblock %}</title>
<meta name="og:site_name" content="Navan Chauhan" />
<link rel="canonical" href="https://web.navan.dev{% block canURL %}{% endblock %}" />
- <meta name="twitter:url" content="https://web.navan.dev{% block twURL %}{% endblock %} />
+ <meta name="twitter:url" content="https://web.navan.dev{% block twURL %}{% endblock %}" />
<meta name="og:url" content="https://web.navan.dev{% block ogURL %}{% endblock %}" />
<meta name="twitter:title" content="{% block twittertitle %}Hey - Home{% endblock %}" />
<meta name="og:title" content="{% block ogtitle %}Hey - Home{% endblock %}" />
@@ -26,12 +39,14 @@
<script data-goatcounter="https://navanchauhan.goatcounter.com/count"
async src="//gc.zgo.at/count.js"></script>
<script defer data-domain="web.navan.dev" src="https://plausible.io/js/plausible.js"></script>
- <link rel="manifest" href="manifest.json" />
+ <link rel="manifest" href="/manifest.json" />
{% endblock %}
</head>
-<body>
- {% include "header.html" %}
+<body class="theme-base-0d">
+ {% include "sidebar.html" %}
+ <div class="content container">
{% block body %}{% endblock %}
+ </div>
<script src="assets/manup.min.js"></script>
<script src="/pwabuilder-sw-register.js"></script>
</body>