You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ignoreErrors = ["additional-script-loading-error"] # ignore error of loading additional scripts.
13
+
14
+
# traditional way: theme component resides in directory 'themes'
15
+
theme = "hugo-blog-awesome"
16
+
17
+
# modern way: pull in theme component as hugo module
18
+
#[module]
19
+
# Uncomment the next line to build and serve using local theme clone declared in the named Hugo workspace:
20
+
# workspace = "hugo-blog-awesome.work"
21
+
#[module.hugoVersion]
22
+
#extended = true
23
+
#min = "0.87.0"
24
+
#[[module.imports]]
25
+
#path = "github.com/hugo-sid/hugo-blog-awesome"
26
+
#disable = false
27
+
28
+
[services]
29
+
# To enable Google Analytics 4 (gtag.js) provide G-MEASUREMENT_ID below.
30
+
# To disable Google Analytics, simply leave the field empty or remove the next two lines
31
+
[services.googleAnalytics]
32
+
id = ''# G-MEASUREMENT_ID
33
+
34
+
# To enable Disqus comments, provide Disqus Shortname below.
35
+
# To disable Disqus comments, simply leave the field empty or remove the next two lines
36
+
[services.disqus]
37
+
shortname = ''
38
+
39
+
# set markup.highlight.noClasses=false to enable code highlight
40
+
[markup]
41
+
[markup.highlight]
42
+
noClasses = false
43
+
[markup.goldmark.renderer]
44
+
unsafe = true
45
+
[markup.tableOfContents]
46
+
startLevel = 2# ToC starts from H2
47
+
endLevel = 4# ToC ends at H4
48
+
ordered = false# generates <ul> instead of <ol>
49
+
50
+
############################## English language ################################
51
+
[Languages.en-gb]
52
+
languageName = "English"
53
+
languageCode = "en-gb"
54
+
contentDir = "content/"
55
+
weight = 1
56
+
57
+
[Languages.en-gb.menu]
58
+
[[Languages.en-gb.menu.main]]
59
+
# The page reference (pageRef) is useful for menu highlighting
60
+
# When pageRef is set, setting `url` is optional; it will be used as a fallback if the page is not found.
61
+
pageRef="/"
62
+
name = 'About'
63
+
url = '/'
64
+
weight = 10
65
+
[[Languages.en-gb.menu.main]]
66
+
pageRef="projects"
67
+
name = 'Projects'
68
+
url = '/projects/'
69
+
weight = 20
70
+
[[Languages.en-gb.menu.main]]
71
+
pageRef="resume"
72
+
name = 'Resume'
73
+
url = '/resume.pdf'
74
+
weight = 30
75
+
[[Languages.en-gb.menu.main]]
76
+
pageRef="arcade-blog"
77
+
name = 'Arcade'
78
+
url = '/arcade-blog/'
79
+
weight = 40
80
+
81
+
[Languages.en-gb.params]
82
+
sitename = "Rian Rutherford"
83
+
defaultColor = "dark"# set color mode: dark, light, auto
84
+
# Setting it to 'auto' applies the color scheme based on the visitor's device color preference.If you don't specify anything, ignore this parameter, or leave it blank,
85
+
# the default value is set to 'auto'.
86
+
# You can take a look at layouts/index.html for more information.
87
+
description = "Portfolio website of Rian Rutherford."
88
+
mainSections = ['projects', 'arcade-blog']
89
+
toc = false# set to false to disable table of contents 'globally'
90
+
tocOpen = false# set to true to open table of contents by default
91
+
goToTop = true# set to false to disable 'go to top' button
# Will try to load 'assets/js/custom.js' and 'assets/js/custom-2.js'.
94
+
# Your custom scripts will be concatenated to one file `custom.js`.
95
+
# When building for production it will be minified.
96
+
# The file `custom.js` is loaded on each page (before body tag ends).
97
+
dateFormat = ""# date format used to show dates on various pages. If nothing is specified, then "2 Jan 2006" format is used.
98
+
# See https://gohugo.io/functions/format/#hugo-date-and-time-templating-reference for available date formats.
99
+
rssFeedDescription = "summary"# available options: 1) summary 2) full
100
+
# summary - includes a short summary of the blog post in the RSS feed. Generated using Hugo .Summary .
101
+
# full - includes full blog post in the RSS feed. Generated using Hugo .Content .
102
+
# By default (or if nothing is specified), summary is used.
103
+
104
+
[Languages.en-gb.params.author]
105
+
avatar = "RR-runic_white_820x820.png"# put the file in assets folder; also ensure that image has same height and width
106
+
# Note: image is not rendered if the resource(avatar image) is not found. No error is displayed.
107
+
intro = "Rian Rutherford"
108
+
name = "Rian Rutherford"
109
+
description = "Unreal Engine C++ and Bevy (Rust) programmer."
110
+
111
+
# Allow to override webmanifest options
112
+
[Languages.en-gb.params.webmanifest]
113
+
name = "sitename"# will use "params.sitename" or "title" by default
114
+
short_name = "sitename"# same as name
115
+
start_url = "/"# will use homepage url by default
116
+
theme_color = "#434648"# default is "#434648" (base color of text). Also will override html `<meta name="theme-color" />`
117
+
background_color = "#fff"# by default depend on "params.defaultColor" for "light" or "auto" will be set to "#fff" for dark will be "#131418" (color of dark mode background)
0 commit comments