Skip to content

Commit 1d1ebe5

Browse files
committed
Have a with hugo-theme-stack
1 parent ddaa0aa commit 1d1ebe5

File tree

240 files changed

+10225
-1
lines changed

Some content is hidden

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

240 files changed

+10225
-1
lines changed

assets/jsconfig.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"compilerOptions": {
3+
"baseUrl": ".",
4+
"paths": {
5+
"*": [
6+
"../themes/hugo-theme-stack/assets/*"
7+
]
8+
}
9+
}
10+
}

hugo.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
baseURL: https://blog.hgomez.net/
22
languageCode: en-us
33
title: Rico's Blog
4-
theme: ["PaperMod"]
4+
#theme: ["PaperMod"]
5+
theme: ["hugo-theme-stack"]
56

67
enableEmoji: true
78

resources/_gen/assets/scss/style.scss_511aa33e99371f93fbf403479ebfd32e.content

+10
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"Target":"/scss/style.min.0304c6baf04e01a8fe70693791cb744d56a3578a3120a8796cefc66825aa39c7.css","MediaType":"text/css","Data":{"Integrity":"sha256-AwTGuvBOAaj+cGk3kct0TVajV4oxIKh5bO/GaCWqOcc="}}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Update the NODE_VERSION arg in docker-compose.yml to pick a Node version: 10, 12, 14
2+
ARG NODE_VERSION=14
3+
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${NODE_VERSION}
4+
5+
# VARIANT can be either 'hugo' for the standard version or 'hugo_extended' for the extended version.
6+
ARG VARIANT=hugo
7+
# VERSION can be either 'latest' or a specific version number
8+
ARG VERSION=latest
9+
10+
# Download Hugo
11+
RUN apt-get update && apt-get install -y ca-certificates openssl git curl && \
12+
rm -rf /var/lib/apt/lists/* && \
13+
case ${VERSION} in \
14+
latest) \
15+
export VERSION=$(curl -s https://api.github.com/repos/gohugoio/hugo/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4)}') ;;\
16+
esac && \
17+
echo ${VERSION} && \
18+
wget -O ${VERSION}.tar.gz https://github.com/gohugoio/hugo/releases/download/v${VERSION}/${VARIANT}_${VERSION}_Linux-64bit.tar.gz && \
19+
tar xf ${VERSION}.tar.gz && \
20+
mv hugo /usr/bin/hugo
21+
22+
# Hugo dev server port
23+
EXPOSE 1313
24+
25+
# [Optional] Uncomment this section to install additional OS packages you may want.
26+
#
27+
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
28+
# && apt-get -y install --no-install-recommends <your-package-list-here>
29+
30+
# [Optional] Uncomment if you want to install more global node packages
31+
# RUN sudo -u node npm install -g <your-package-list-here>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
2+
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/hugo
3+
{
4+
"name": "Hugo (Community)",
5+
"build": {
6+
"dockerfile": "Dockerfile",
7+
"args": {
8+
// Update VARIANT to pick hugo variant.
9+
// Example variants: hugo, hugo_extended
10+
// Rebuild the container if it already exists to update.
11+
"VARIANT": "hugo_extended",
12+
// Update VERSION to pick a specific hugo version.
13+
// Example versions: latest, 0.73.0, 0,71.1
14+
// Rebuild the container if it already exists to update.
15+
"VERSION": "latest",
16+
// Update NODE_VERSION to pick the Node.js version: 12, 14
17+
"NODE_VERSION": "14",
18+
}
19+
},
20+
21+
// Set *default* container specific settings.json values on container create.
22+
"settings": {
23+
"html.format.templating": true,
24+
},
25+
26+
// Add the IDs of extensions you want installed when the container is created.
27+
"extensions": [
28+
"bungcip.better-toml",
29+
"davidanson.vscode-markdownlint"
30+
],
31+
32+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
33+
"forwardPorts": [
34+
1313
35+
],
36+
37+
// Use 'postCreateCommand' to run commands after the container is created.
38+
// "postCreateCommand": "uname -a",
39+
40+
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
41+
"remoteUser": "node",
42+
"features": {
43+
"golang": "latest"
44+
}
45+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
ko_fi: jimmycai
2+
github: CaiJimmy
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
name: Bug Report
2+
description: File a bug report
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: |
7+
Thanks for taking the time to fill out this bug report! Please provide as much information as possible and make sure you have checked the [documentation](https://stack.jimmycai.com/guide/).
8+
- type: textarea
9+
id: what-happened
10+
attributes:
11+
label: What happened?
12+
description: Also tell us, what did you expect to happen? Please be as detailed as possible, including screenshots and any other information that might help us reproduce the problem.
13+
placeholder: Tell us what you see!
14+
validations:
15+
required: true
16+
- type: input
17+
id: hugo-version
18+
attributes:
19+
label: Hugo version
20+
description: "What is the version of Hugo you are using? (Note: this theme does not support non-extended version of Hugo)"
21+
placeholder: ex. 0.100.0
22+
validations:
23+
required: true
24+
- type: input
25+
id: theme-version
26+
attributes:
27+
label: Theme version
28+
description: "What is the version of Stack theme you are using?"
29+
placeholder: ex. 3.12.0
30+
validations:
31+
required: true
32+
- type: dropdown
33+
id: browsers
34+
attributes:
35+
label: What browsers are you seeing the problem on?
36+
multiple: true
37+
options:
38+
- Firefox
39+
- Chrome
40+
- Safari
41+
- Microsoft Edge
42+
- type: input
43+
id: browser-info
44+
attributes:
45+
label: More information about the browser
46+
description: "E.g: Browser version, OS version, etc."
47+
placeholder: ex. Chrome 104, Windows 11
48+
validations:
49+
required: false
50+
- type: textarea
51+
id: logs
52+
attributes:
53+
label: Relevant log output
54+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
55+
render: shell
56+
- type: input
57+
id: minimal-reproduction-url
58+
attributes:
59+
label: Link to Minimal Reproducible Example
60+
description: |
61+
Use [CaiJimmy/hugo-theme-stack-starter](https://github.com/CaiJimmy/hugo-theme-stack-starter) to create a minimal reproduction of the problem.
62+
A minimal reproduction is required so that others can help debug your issue. If a report is vague (e.g. just a generic error message) and has no reproduction, it may be auto-closed.
63+
placeholder: https://github.com/username/your-repository
64+
validations:
65+
required: true
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Discussions
4+
url: https://github.com/CaiJimmy/hugo-theme-stack/discussions
5+
about: Please ask and answer questions here.

themes/hugo-theme-stack/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
public
2+
resources
3+
assets/jsconfig.json
4+
.hugo_build.lock

0 commit comments

Comments
 (0)