diff options
author | Akshay <[email protected]> | 2024-11-04 12:45:50 +0000 |
---|---|---|
committer | Akshay <[email protected]> | 2024-11-04 12:45:50 +0000 |
commit | d18f24945f35fde4e04b29ab27abce93ffbc6a99 (patch) | |
tree | 8a8312503b551b0ff467b578879c1df91e307857 /src/mixins/head.pug | |
parent | 429fefe5023222b3e8a9a8fb6fbf440938dacce8 (diff) |
share html head
Diffstat (limited to 'src/mixins/head.pug')
-rw-r--r-- | src/mixins/head.pug | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mixins/head.pug b/src/mixins/head.pug new file mode 100644 index 0000000..f7c1baf --- /dev/null +++ b/src/mixins/head.pug | |||
@@ -0,0 +1,10 @@ | |||
1 | mixin head() | ||
2 | head | ||
3 | meta(name="viewport" content="width=device-width, initial-scale=1.0") | ||
4 | meta(charset='UTF-8') | ||
5 | title reddit | ||
6 | link(rel="stylesheet", href="/styles.css") | ||
7 | link(rel="preconnect" href="https://rsms.me/") | ||
8 | link(rel="stylesheet" href="https://rsms.me/inter/inter.css") | ||
9 | script(src="https://cdn.dashjs.org/latest/dash.all.min.js") | ||
10 | |||