-
Notifications
You must be signed in to change notification settings - Fork 0
/
hugo.toml
99 lines (82 loc) · 2.99 KB
/
hugo.toml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
baseURL = "https://spectre10.github.io/"
defaultContentLanguage = "en"
languageCode = "en"
title = "spectre10"
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
[module]
[[module.imports]]
path = 'github.com/526avijitgupta/gokarna'
# theme = "gokarna"
# Automatically generate robots.txt
enableRobotsTXT = true
[menu]
[[menu.main]]
identifier = "home"
name = "Home"
url = "/"
weight = 1
[[menu.main]]
# Unique identifier for a menu item
identifier = "posts"
url = "/posts/"
# You can add extra information before the name (HTML format is supported), such as icons
# pre = "<span data-feather='book'></span>"
# You can add extra information after the name (HTML format is supported), such as icons
post = ""
# Display name
name = "Posts"
# Weights are used to determine the ordering
weight = 2
[[menu.main]]
identifier = "about"
name = "About"
url = "/about/"
weight = 3
# pre = "<span data-feather='info'></span>"
[[menu.main]]
identifier = "github"
url = "https://github.com/spectre10/spectre10.github.io"
weight = 4
# We use feather-icons: https://feathericons.com/
pre = "<span data-feather='github'></span>"
[[menu.main]]
identifier = "rss"
pre = "<span data-feather='rss'></span>"
url = "/index.xml"
weight = 5
[params]
footer = "Ghanshyam Thakkar"
description = "Developer, Student, Open Source Enthusiast"
# avatarURL = "/images/avatar.webp"
# AvatarAltText = "avatar"
# avatarSize = "size-m"
ShowBackToTopButton = true # true or false for "back to top" button on posts
customHeadHTML = """
<!-- KaTeX -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.0/dist/katex.min.css" integrity="sha384-Xi8rHCmBmhbuyyhbI88391ZKP2dmfnOl4rT9ZfRI7mLTdk1wblIUnrIq35nqwEvC" crossorigin="anonymous">
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.0/dist/katex.min.js" integrity="sha384-X/XCfMm41VSsqRNQgDerQczD69XqmjOOOwYQvr/uuC+j4OPoNhVgjdGFwhvN02Ja" crossorigin="anonymous"></script>
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.0/dist/contrib/auto-render.min.js" integrity="sha384-+XBljXPPiv+OzfbB3cVmLHf4hdUFHlWNZN5spNQ7rmHTXpd7WvJum6fIACpNNfIR" crossorigin="anonymous"></script>
<script>
document.addEventListener("DOMContentLoaded", function() {
renderMathInElement(document.body, {
// customised options
// • auto-render specific keys, e.g.:
delimiters: [
{left: '$$', right: '$$', display: true},
{left: '$', right: '$', display: false},
],
// • rendering keys, e.g.:
throwOnError : false
});
});
</script>
"""
socialIcons = [
{name = "linkedin", url = "https://www.linkedin.com/in/ghanshyam-thakkar/"},
{name = "github", url = "https://github.com/spectre10"},
{name = "email", url = "mailto:shyamthakkar001@gmail.com"}
]
metaKeywords = ["blog", "gokarna", "hugo"]