-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdefault.pug
More file actions
30 lines (24 loc) · 1.03 KB
/
default.pug
File metadata and controls
30 lines (24 loc) · 1.03 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
28
29
30
include templates/mixins.pug
doctype html
html.dark
head
title {% if page.title %}{{ page.title | escape }} | {% endif %}{{ site.title | escape }}
// Favicon
link(rel="icon" href="{{ layout.favicon | default: '/media/favicon.ico' }}" type="{{ layout.favicon_type | default: 'image/x-icon' }}")
link(rel="icon" type="image/png" sizes="32x32" href="/media/favicon-32.png")
link(rel="icon" type="image/png" sizes="192x192" href="/media/favicon-192.png")
link(rel="apple-touch-icon" href="/media/apple-touch-icon.png")
// Scripts and styles
include templates/head-includes.pug
// Google Analytics
| {% if site.analytics == "thankful" %}
+analytics-thankful
| {% else %}
+analytics-superuserlabs
| {% endif %}
body.antialiased.bg-slate-950.text-gray-100(style="font-family: 'Inter', system-ui, sans-serif;")
div.flex.flex-col.min-h-screen
include templates/navbar.pug
main
| {{ content }}
+footer