Skip to content

Commit 7e5af47

Browse files
committed
update
1 parent 318b4c3 commit 7e5af47

File tree

3 files changed

+15
-203
lines changed

3 files changed

+15
-203
lines changed

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[submodule "themes/hugo-blog-awesome"]
22
path = themes/hugo-blog-awesome
3-
url = https://github.com/hugo-sid/hugo-blog-awesome.git
3+
url = https://github.com/codercommand/hugo-blog-awesome.git

content/en/projects/LANSpace.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
+++
2+
title = 'LANSpace'
3+
date = 2024-04-25T15:16:07+01:00
4+
draft = false
5+
+++

hugo.toml

Lines changed: 9 additions & 202 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
title = "Rian Rutherford"
2-
#baseURL = 'https://codercommand/github.io/'
2+
baseURL = 'https://codercommand/github.io/'
33

44
# This is what goes in <html lang="">
55
languageCode = 'en-us'
@@ -59,18 +59,18 @@ theme = "hugo-blog-awesome"
5959
# The page reference (pageRef) is useful for menu highlighting
6060
# When pageRef is set, setting `url` is optional; it will be used as a fallback if the page is not found.
6161
pageRef="/"
62-
name = 'Home'
62+
name = 'About'
6363
url = '/'
6464
weight = 10
6565
[[Languages.en-gb.menu.main]]
66-
pageRef="posts"
67-
name = 'Posts'
68-
url = '/posts/'
66+
pageRef="projects"
67+
name = 'Projects'
68+
url = '/projects/'
6969
weight = 20
7070
[[Languages.en-gb.menu.main]]
71-
pageRef="about"
72-
name = 'About'
73-
url = '/about/'
71+
pageRef="resume"
72+
name = 'Resume'
73+
url = '/resume/'
7474
weight = 30
7575

7676
[Languages.en-gb.params]
@@ -80,7 +80,7 @@ theme = "hugo-blog-awesome"
8080
# the default value is set to 'auto'.
8181
# You can take a look at layouts/index.html for more information.
8282
description = "Minimal Hugo blog theme with light and dark mode support"
83-
mainSections = ['posts']
83+
mainSections = ['projects']
8484
toc = true # set to false to disable table of contents 'globally'
8585
tocOpen = false # set to true to open table of contents by default
8686
goToTop = true # set to false to disable 'go to top' button
@@ -112,199 +112,6 @@ theme = "hugo-blog-awesome"
112112
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)
113113
display = "standalone"
114114

115-
############################## Italian language ################################
116-
[Languages.it]
117-
languageName = "Italian"
118-
languageCode = "it"
119-
contentDir = "content/it"
120-
weight = 2
121-
[Languages.it.menu]
122-
[[Languages.it.menu.main]]
123-
# The page reference (pageRef) is useful for menu highlighting
124-
# When pageRef is set, setting `url` is optional; it will be used as a fallback if the page is not found.
125-
pageRef="/"
126-
name = 'Inizio'
127-
url = '/'
128-
weight = 10
129-
[[Languages.it.menu.main]]
130-
pageRef="posts"
131-
name = 'Articoli'
132-
url = '/posts/'
133-
weight = 20
134-
[[Languages.it.menu.main]]
135-
pageRef="about"
136-
name = 'Chi Sono'
137-
url = '/about/'
138-
weight = 30
139-
140-
[Languages.it.params]
141-
sitename = "Awesome hugo blog"
142-
defaultColor = "dark" # set color mode: dark, light, auto
143-
# 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,
144-
# the default value is set to 'auto'.
145-
# You can take a look at layouts/index.html for more information.
146-
description = "Un tema Hugo veloce e minimalista con supporto per la modalità chiara e scura, per la gestione di un sito o di un blog personale"
147-
mainSections = ['posts']
148-
toc = true # set to false to disable table of contents 'globally'
149-
tocOpen = false # set to true to open table of contents by default
150-
goToTop = true # set to false to disable 'go to top' button
151-
additionalScripts = ['js/custom.js', 'js/custom-2.js']
152-
# Will try to load 'assets/js/custom.js' and 'assets/js/custom-2.js'.
153-
# Your custom scripts will be concatenated to one file `custom.js`.
154-
# When building for production it will be minified.
155-
# The file `custom.js` is loaded on each page (before body tag ends).
156-
dateFormat = "2 January 2006" # default date format used on various pages
157-
# See https://gohugo.io/functions/format/#hugo-date-and-time-templating-reference for available date formats.
158-
rssFeedDescription = "summary" # available options: 1) summary 2) full
159-
# summary - includes a short summary of the blog post in the RSS feed. Generated using Hugo .Summary .
160-
# full - includes full blog post in the RSS feed. Generated using Hugo .Content .
161-
# By default (or if nothing is specified), summary is used.
162-
163-
[Languages.it.params.author]
164-
avatar = "avatar.jpg" # put the file in assets folder; also ensure that image has same height and width
165-
# Note: image is not rendered if the resource(avatar image) is not found. No error is displayed.
166-
intro = "Awesome hugo blog"
167-
name = "Sidharth R"
168-
description = "Un tema Hugo veloce e minimalista con supporto per la modalità chiara e scura, per la gestione di un sito o di un blog personale."
169-
170-
# Allow to override webmanifest options
171-
[Languages.it.params.webmanifest]
172-
name = "sitename" # will use "params.sitename" or "title" by default
173-
short_name = "sitename" # same as name
174-
start_url = "/" # will use homepage url by default
175-
theme_color = "#434648" # default is "#434648" (base color of text). Also will override html `<meta name="theme-color" />`
176-
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)
177-
display = "standalone"
178-
179-
############################## Russian language ################################
180-
[Languages.ru-ru]
181-
languageName = "Russian"
182-
languageCode = "ru-ru"
183-
contentDir = "content/ru"
184-
weight = 1
185-
186-
[Languages.ru-ru.menu]
187-
[[Languages.ru-ru.menu.main]]
188-
# The page reference (pageRef) is useful for menu highlighting
189-
# When pageRef is set, setting `url` is optional; it will be used as a fallback if the page is not found.
190-
pageRef="/"
191-
name = 'Главная'
192-
url = '/'
193-
weight = 10
194-
[[Languages.ru-ru.menu.main]]
195-
pageRef="posts"
196-
name = 'Записи'
197-
url = '/posts/'
198-
weight = 20
199-
[[Languages.ru-ru.menu.main]]
200-
pageRef="about"
201-
name = 'О проекте'
202-
url = '/about/'
203-
weight = 30
204-
205-
[Languages.ru-ru.params]
206-
sitename = "Превосходный hugo блог"
207-
defaultColor = "dark" # set color mode: dark, light, auto
208-
# 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,
209-
# the default value is set to 'auto'.
210-
# You can take a look at layouts/index.html for more information.
211-
description = "Минималистичная тема для блога на Hugo с поддержкой светлого и тёмного режима"
212-
mainSections = ['posts']
213-
toc = true # set to false to disable table of contents 'globally'
214-
tocOpen = false # set to true to open table of contents by default
215-
goToTop = true # set to false to disable 'go to top' button
216-
additionalScripts = ['js/custom.js', 'js/custom-2.js']
217-
# Will try to load 'assets/js/custom.js' and 'assets/js/custom-2.js'.
218-
# Your custom scripts will be concatenated to one file `custom.js`.
219-
# When building for production it will be minified.
220-
# The file `custom.js` is loaded on each page (before body tag ends).
221-
dateFormat = "" # date format used to show dates on various pages. If nothing is specified, then "2 Jan 2006" format is used.
222-
# See https://gohugo.io/functions/format/#hugo-date-and-time-templating-reference for available date formats.
223-
rssFeedDescription = "summary" # available options: 1) summary 2) full
224-
# summary - includes a short summary of the blog post in the RSS feed. Generated using Hugo .Summary .
225-
# full - includes full blog post in the RSS feed. Generated using Hugo .Content .
226-
# By default (or if nothing is specified), summary is used.
227-
228-
[Languages.ru-ru.params.author]
229-
avatar = "avatar.jpg" # put the file in assets folder; also ensure that image has same height and width
230-
# Note: image is not rendered if the resource(avatar image) is not found. No error is displayed.
231-
intro = "Превосходный hugo блог"
232-
name = "Sidharth R"
233-
description = "Быстрая, минималистичная тема для Hugo с поддержкой светлого и тёмного режима для использования на персональных сайтах и блогах."
234-
235-
# Allow to override webmanifest options
236-
[Languages.ru-ru.params.webmanifest]
237-
name = "sitename" # will use "params.sitename" or "title" by default
238-
short_name = "sitename" # same as name
239-
start_url = "/" # will use homepage url by default
240-
theme_color = "#434648" # default is "#434648" (base color of text). Also will override html `<meta name="theme-color" />`
241-
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)
242-
display = "standalone"
243-
244-
############################## German language ################################
245-
[Languages.de-de]
246-
languageName = "German"
247-
languageCode = "de-de"
248-
contentDir = "content/de"
249-
weight = 1
250-
251-
[Languages.de-de.menu]
252-
[[Languages.de-de.menu.main]]
253-
# The page reference (pageRef) is useful for menu highlighting
254-
# When pageRef is set, setting `url` is optional; it will be used as a fallback if the page is not found.
255-
pageRef="/"
256-
name = 'Startseite'
257-
url = '/'
258-
weight = 10
259-
[[Languages.de-de.menu.main]]
260-
pageRef="posts"
261-
name = 'Beiträge'
262-
url = '/posts/'
263-
weight = 20
264-
[[Languages.de-de.menu.main]]
265-
pageRef="about"
266-
name = 'Über mich'
267-
url = '/about/'
268-
weight = 30
269-
270-
[Languages.de-de.params]
271-
sitename = "Awesome hugo blog"
272-
defaultColor = "dark" # set color mode: dark, light, auto
273-
# 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,
274-
# the default value is set to 'auto'.
275-
# You can take a look at layouts/index.html for more information.
276-
description = "Minimales Hugo-Blog-Theme mit hellem und dunklem Modus"
277-
mainSections = ['posts']
278-
toc = true # set to false to disable table of contents 'globally'
279-
tocOpen = false # set to true to open table of contents by default
280-
goToTop = true # set to false to disable 'go to top' button
281-
additionalScripts = ['js/custom.js', 'js/custom-2.js']
282-
# Will try to load 'assets/js/custom.js' and 'assets/js/custom-2.js'.
283-
# Your custom scripts will be concatenated to one file `custom.js`.
284-
# When building for production it will be minified.
285-
# The file `custom.js` is loaded on each page (before body tag ends).
286-
dateFormat = "" # date format used to show dates on various pages. If nothing is specified, then "2 Jan 2006" format is used.
287-
# See https://gohugo.io/functions/format/#hugo-date-and-time-templating-reference for available date formats.
288-
rssFeedDescription = "summary" # available options: 1) summary 2) full
289-
# summary - includes a short summary of the blog post in the RSS feed. Generated using Hugo .Summary .
290-
# full - includes full blog post in the RSS feed. Generated using Hugo .Content .
291-
# By default (or if nothing is specified), summary is used.
292-
293-
[Languages.de-de.params.author]
294-
avatar = "avatar.jpg" # put the file in assets folder; also ensure that image has same height and width
295-
# Note: image is not rendered if the resource(avatar image) is not found. No error is displayed.
296-
intro = "Awesome hugo blog"
297-
name = "Sidharth R"
298-
description = "Ein schnelles, minimalistisches Hugo-Theme mit hellem und dunklem Modus, für eine persönliche Website oder Blog."
299-
300-
# Allow to override webmanifest options
301-
[Languages.de-de.params.webmanifest]
302-
name = "sitename" # will use "params.sitename" or "title" by default
303-
short_name = "sitename" # same as name
304-
start_url = "/" # will use homepage url by default
305-
theme_color = "#434648" # default is "#434648" (base color of text). Also will override html `<meta name="theme-color" />`
306-
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)
307-
display = "standalone"
308115

309116
###################################################################
310117

0 commit comments

Comments
 (0)