Skip to content

Commit 7073288

Browse files
Cloning theme files
Cloning Stack Theme - https://github.com/CaiJimmy/hugo-theme-stack-starter
1 parent a868fc4 commit 7073288

120 files changed

Lines changed: 3597 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

assets/.DS_Store

6 KB
Binary file not shown.

assets/img/avatar.png

410 Bytes
Loading

assets/jsconfig.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"compilerOptions": {
3+
"baseUrl": ".",
4+
"paths": {
5+
"*": [
6+
"../../../../../Library/Caches/hugo_cache/modules/filecache/modules/pkg/mod/github.com/!cai!jimmy/hugo-theme-stack/v3@v3.32.0/assets/*"
7+
]
8+
}
9+
}
10+
}

assets/scss/custom.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/*
2+
You can add your own custom styles here.
3+
*/

config/_default/_languages.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Rename this file to languages.toml to enable multilingual support
2+
[en]
3+
languageName = "English"
4+
languagedirection = "ltr"
5+
title = "Example Site"
6+
weight = 1

config/_default/config.toml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Change baseurl before deploy
2+
baseurl = "https://naturalfunction.github.io"
3+
languageCode = "en-us"
4+
title = "Vitor Ribeiro"
5+
6+
# Theme i18n support
7+
# Available values: en, fr, id, ja, ko, pt-br, zh-cn, zh-tw, es, de, nl, it, th, el, uk, ar
8+
defaultContentLanguage = "en"
9+
10+
# Set hasCJKLanguage to true if DefaultContentLanguage is in [zh-cn ja ko]
11+
# This will make .Summary and .WordCount behave correctly for CJK languages.
12+
hasCJKLanguage = false
13+
14+
# Change it to your Disqus shortname before using
15+
disqusShortname = ""
16+
17+
[pagination]
18+
pagerSize = 5

config/_default/markup.toml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Markdown renderer configuration
2+
[goldmark.renderer]
3+
unsafe = true
4+
5+
[goldmark.extensions.passthrough]
6+
enable = true
7+
8+
# LaTeX math support
9+
# https://gohugo.io/content-management/mathematics/
10+
[goldmark.extensions.passthrough.delimiters]
11+
block = [['\[', '\]'], ['$$', '$$']]
12+
inline = [['\(', '\)']]
13+
14+
[tableOfContents]
15+
endLevel = 4
16+
ordered = true
17+
startLevel = 2
18+
19+
[highlight]
20+
noClasses = false
21+
codeFences = true
22+
guessSyntax = true
23+
lineNoStart = 1
24+
lineNos = true
25+
lineNumbersInTable = true
26+
tabWidth = 4

config/_default/menu.toml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Configure main menu and social menu
2+
#[[main]]
3+
#identifier = "home"
4+
#name = "Home"
5+
#url = "/"
6+
#[main.params]
7+
#icon = "home"
8+
#newtab = true
9+
10+
[[social]]
11+
identifier = "github"
12+
name = "GitHub"
13+
url = "https://github.com/naturalfunction"
14+
15+
[social.params]
16+
icon = "brand-github"

config/_default/module.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[[imports]]
2+
path = "github.com/CaiJimmy/hugo-theme-stack/v3"

config/_default/params.toml

Lines changed: 150 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,150 @@
1+
# Pages placed under these sections will be shown on homepage and archive page.
2+
mainSections = ["post"]
3+
# Output page's full content in RSS.
4+
rssFullContent = true
5+
favicon = "/favicon.png"
6+
7+
[footer]
8+
since = 2025
9+
customText = ""
10+
11+
[dateFormat]
12+
published = "Nov 03, 2025"
13+
lastUpdated = "Nov 03, 2025 00:00 MST"
14+
15+
[sidebar]
16+
emoji = "🧮"
17+
subtitle = "Exploring the intersection of sales, technology, and IoT."
18+
19+
[sidebar.avatar]
20+
enabled = true
21+
local = true
22+
src = "img/avatar.png"
23+
24+
[article]
25+
headingAnchor = false
26+
math = false
27+
readingTime = true
28+
29+
[article.license]
30+
enabled = true
31+
default = "Licensed under CC BY-NC-SA 4.0"
32+
33+
## Widgets
34+
[[widgets.homepage]]
35+
type = "search"
36+
37+
[[widgets.homepage]]
38+
type = "archives"
39+
40+
[widgets.homepage.params]
41+
limit = 5
42+
43+
[[widgets.homepage]]
44+
type = "categories"
45+
46+
[widgets.homepage.params]
47+
limit = 10
48+
49+
[[widgets.homepage]]
50+
type = "tag-cloud"
51+
52+
[widgets.homepage.params]
53+
limit = 10
54+
55+
[[widgets.page]]
56+
type = "toc"
57+
58+
[opengraph.twitter]
59+
site = ""
60+
card = "summary_large_image"
61+
62+
[defaultImage.opengraph]
63+
enabled = false
64+
local = false
65+
src = ""
66+
67+
[colorScheme]
68+
toggle = true
69+
default = "auto"
70+
71+
[imageProcessing.cover]
72+
enabled = true
73+
74+
[imageProcessing.content]
75+
enabled = true
76+
77+
## Comments
78+
[comments]
79+
enabled = false
80+
provider = "disqus"
81+
82+
[comments.disqusjs]
83+
shortname = ""
84+
apiUrl = ""
85+
apiKey = ""
86+
admin = ""
87+
adminLabel = ""
88+
89+
[comments.utterances]
90+
repo = ""
91+
issueTerm = "pathname"
92+
label = ""
93+
94+
[comments.remark42]
95+
host = ""
96+
site = ""
97+
locale = ""
98+
99+
[comments.vssue]
100+
platform = ""
101+
owner = ""
102+
repo = ""
103+
clientId = ""
104+
clientSecret = ""
105+
autoCreateIssue = false
106+
107+
[comments.waline]
108+
serverURL = ""
109+
lang = ""
110+
visitor = ""
111+
avatar = ""
112+
emoji = ["https://cdn.jsdelivr.net/gh/walinejs/emojis/weibo"]
113+
requiredMeta = ["name", "email", "url"]
114+
placeholder = ""
115+
116+
[comments.waline.locale]
117+
admin = "Admin"
118+
119+
[comments.twikoo]
120+
envId = ""
121+
region = ""
122+
path = ""
123+
lang = ""
124+
125+
[comments.cactus]
126+
defaultHomeserverUrl = "https://matrix.cactus.chat:8448"
127+
serverName = "cactus.chat"
128+
siteName = ""
129+
130+
[comments.giscus]
131+
repo = ""
132+
repoID = ""
133+
category = ""
134+
categoryID = ""
135+
mapping = ""
136+
lightTheme = ""
137+
darkTheme = ""
138+
reactionsEnabled = 1
139+
emitMetadata = 0
140+
141+
[comments.gitalk]
142+
owner = ""
143+
admin = ""
144+
repo = ""
145+
clientID = ""
146+
clientSecret = ""
147+
148+
[comments.cusdis]
149+
host = ""
150+
id = ""

0 commit comments

Comments
 (0)