Refactor site to new theme
Some checks failed
Build and Deploy Hugo / deploy (push) Failing after 20s
Some checks failed
Build and Deploy Hugo / deploy (push) Failing after 20s
This commit is contained in:
parent
1c5cdb3b97
commit
2519b96a86
16 changed files with 2590 additions and 83 deletions
113
hugo.toml
113
hugo.toml
|
|
@ -1,58 +1,73 @@
|
|||
baseurl = "https://www.alexselimov.com/"
|
||||
languageCode = "en-us"
|
||||
theme = "hugo-theme-terminal"
|
||||
pagination.pagerSize = 5
|
||||
baseURL = "https://www.alexselimov.com/"
|
||||
languageCode = "en-US"
|
||||
theme = "hugo-bearcub"
|
||||
defaultContentLanguage = "en"
|
||||
copyright = "© Alex Selimov"
|
||||
enableRobotsTXT = true
|
||||
|
||||
[markup.goldmark.renderer]
|
||||
unsafe = true
|
||||
[pagination]
|
||||
pagerSize = 5
|
||||
|
||||
[params]
|
||||
contentTypeName = "posts"
|
||||
showMenuItems = 3
|
||||
postsToShowOnIndex = 3
|
||||
fullWidthTheme = false
|
||||
centerTheme = true
|
||||
[markup]
|
||||
[markup.goldmark.renderer]
|
||||
unsafe = true
|
||||
[markup.highlight]
|
||||
lineNos = true
|
||||
lineNumbersInTable = false
|
||||
noClasses = false
|
||||
|
||||
[taxonomies]
|
||||
tag = "tags"
|
||||
topic = "topics"
|
||||
tag = "tags"
|
||||
topic = "topics"
|
||||
|
||||
[languages]
|
||||
[languages.en]
|
||||
title = "Alex Selimov"
|
||||
languageName = "en-US"
|
||||
languageCode = "en-US"
|
||||
[languages.en.menu]
|
||||
[[languages.en.menu.main]]
|
||||
identifier = "home"
|
||||
name = "Home"
|
||||
url = "/"
|
||||
weight = 1
|
||||
[[languages.en.menu.main]]
|
||||
identifier = "projects"
|
||||
name = "Projects"
|
||||
url = "/projects/"
|
||||
weight = 2
|
||||
[[languages.en.menu.main]]
|
||||
identifier = "about"
|
||||
name = "About"
|
||||
url = "/about/"
|
||||
weight = 3
|
||||
|
||||
[languages.en.params]
|
||||
title = "Alex Selimov"
|
||||
subtitle = ""
|
||||
keywords = ""
|
||||
copyright = "© Alex Selimov"
|
||||
menuMore = "Show more"
|
||||
readMore = "Read more"
|
||||
readOtherPosts = "Read other posts"
|
||||
[params]
|
||||
description = "Alex Selimov personal site and blog."
|
||||
title = "Alex Selimov"
|
||||
favicon = "favicon.png"
|
||||
images = ["og-image.png"]
|
||||
dateFormat = "2006-01-02"
|
||||
hideUntranslated = false
|
||||
themeStyle = "herman"
|
||||
generateSocialCard = true
|
||||
postsToShowOnIndex = 5
|
||||
|
||||
[languages.en.params.logo]
|
||||
logoText = "Alex Selimov"
|
||||
logoHomeLink = "/"
|
||||
[[params.popularPosts]]
|
||||
title = "Say goodbye to st and say hello to ghostty"
|
||||
url = "/posts/st_to_ghostty/"
|
||||
[[params.popularPosts]]
|
||||
title = "Getting CUDA toolkit installed on Void Linux"
|
||||
url = "/posts/cuda_on_void/"
|
||||
[[params.popularPosts]]
|
||||
title = "Rust is pretty good (Short thoughts on Rust)"
|
||||
url = "/posts/thoughts_on_rust/"
|
||||
[[params.popularPosts]]
|
||||
title = "My nvim/tmux workflow"
|
||||
url = "/posts/tmux_and_nvim/"
|
||||
[[params.popularPosts]]
|
||||
title = "Fighting the web obesity crisis using Hugo and Skeleton CSS"
|
||||
url = "/posts/web_obesity/"
|
||||
|
||||
[languages.en.menu]
|
||||
[[languages.en.menu.main]]
|
||||
identifier = "cv"
|
||||
name = "[CV]"
|
||||
url = "/cv"
|
||||
weight = 1
|
||||
[[languages.en.menu.main]]
|
||||
identifier = "git"
|
||||
name = "[Git]"
|
||||
url = "https://forge.alexselimov.com/aselimov"
|
||||
weight = 1
|
||||
[[languages.en.menu.main]]
|
||||
identier = "linkedIn"
|
||||
name = "[LinkedIn]"
|
||||
url = "https://www.linkedin.com/in/alex-selimov/"
|
||||
weight = 2
|
||||
[[languages.en.menu.main]]
|
||||
identier = "Scholar"
|
||||
name = "[Google Scholar]"
|
||||
url = "https://scholar.google.com/citations?user=w6unVk8AAAAJ&hl=en&oi=ao"
|
||||
[[languages.en.menu.main]]
|
||||
identifier = "gpg"
|
||||
name = "[GPG public key]"
|
||||
url = "./public.key"
|
||||
[params.author]
|
||||
name = "Alex Selimov"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue