Skip to content

Commit 072656f

Browse files
razonyangditatompel
authored andcommitted
Append PWD into the security.funcs.getenv for Hugo versions less than v0.112.0
0 parents  commit 072656f

File tree

201 files changed

+4147
-0
lines changed

Some content is hidden

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

201 files changed

+4147
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.hugo_build.lock
2+
hugo_stats.json
3+
package-json.lock
4+
public/
5+
node_modules/

.mergify.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
pull_request_rules:
2+
- name: automatic merge for Renovate pull requests
3+
conditions:
4+
- author=renovate[bot]
5+
# - check-success=build
6+
actions:
7+
merge:
8+
method: rebase
9+
10+
- name: Automatic merge on approval
11+
conditions:
12+
- "#approved-reviews-by>=1"
13+
actions:
14+
merge:
15+
method: rebase

Dockerfile

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
###############
2+
# Build Stage #
3+
###############
4+
FROM hugomods/hugo:exts as builder
5+
# Base URL
6+
ARG HUGO_BASEURL=
7+
ENV HUGO_BASEURL=${HUGO_BASEURL}
8+
# Module Proxy
9+
ARG HUGO_MODULE_PROXY=
10+
ENV HUGO_MODULE_PROXY=${HUGO_MODULE_PROXY}
11+
# Build site
12+
COPY . /src
13+
RUN hugo --minify --gc --enableGitInfo
14+
# Set the fallback 404 page if defaultContentLanguageInSubdir is enabled, please replace the `en` with your default language code.
15+
RUN cp ./public/en/404.html ./public/404.html
16+
17+
###############
18+
# Final Stage #
19+
###############
20+
FROM hugomods/hugo:nginx
21+
COPY --from=builder /src/public /site

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 Razon Yang
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# HB Theme Template
2+
3+
The starter theme template of [HB Framework](https://hbstack.dev/), live demo: https://theme.hbstack.dev/.
4+
5+
## Documentations
6+
7+
| English | 简体中文 |
8+
| ------- | -------- |
9+
| [Prerequisites](https://hbstack.dev/en/docs/getting-started/prerequisites/) | [先决条件](https://hbstack.dev/zh-hans/docs/getting-started/prerequisites/) |
10+
| [Installation](https://hbstack.dev/en/docs/getting-started/installation/) | [安裝](https://hbstack.dev/zh-hans/docs/getting-started/installation/) |
11+
| [Configuration](https://hbstack.dev/en/docs/configuration/) | [配置](https://hbstack.dev/zh-hans/docs/configuration/) |
12+
| [Content](https://hbstack.dev/en/docs/content/) | [内容](https://hbstack.dev/zh-hans/docs/content/) |
13+
| [Deployment](https://hbstack.dev/en/docs/deployment/) | [部署](https://hbstack.dev/zh-hans/docs/deployment/) |
14+
| [Modules](https://hbstack.dev/en/docs/modules/) | [模块](https://hbstack.dev/zh-hans/docs/modules/) |
15+
16+
## Features
17+
18+
- **Fast** and **SEO** friendly: [PageSpeed Insight](https://pagespeed.web.dev/analysis?url=https://theme.hbstack.dev/en/) scored perfect :100: in all four metrics on mobile and desktop.
19+
- **Multi-purpose**: blog, project documentations, digital garden, gallery, landing pages and so on.
20+
- **Responsive**: mobile first, built on top of Bootstrap v5.3.
21+
- :ice_cube: **Modular** and **flexible**: extend features via various modules.
22+
- :first_quarter_moon: **Dark mode**: light, dark or auto (follow system).
23+
- :mag: **Search**: powerful client side *fuzzy* search that allows *filtering* and *sorting* of results, as well as searching from all multilingual sites.
24+
- **PurgeCSS**: remove unused CSS.
25+
- :rocket: **PWA**:
26+
- Installable: add site to home screen.
27+
- Offline available: offline page and offline image.
28+
- Allow precaching resources, such as CSS, JS and fonts.
29+
- **Advanced**:
30+
- Custom SCSS [variables](https://github.com/hbstack/theme/blob/main/assets/hb/modules/custom/scss/variables.tmpl.scss) and [style](https://github.com/hbstack/theme/blob/main/assets/hb/modules/custom/scss/index.scss).
31+
- Custom [JavaScript](https://github.com/hbstack/theme/blob/main/assets/hb/modules/custom/js/index.ts).
32+
- Custom HTML markup:
33+
- [Before the end of `<head>`](https://github.com/hbstack/theme/blob/main/layouts/partials/hugopress/modules/hb-custom/hooks/head-end.html)
34+
- [Before the end of `<body>`](https://github.com/hbstack/theme/blob/main/layouts/partials/hugopress/modules/hb-custom/hooks/body-end.html)
35+
- :framed_picture: **Images Processing**: process images via URL query string and fragment, such as alignment, resizing, cropping and so on, friendly to Markdown.
36+
- :computer: **Code block panel**: expand toggle, code copy button, line number toggle and wrap toggle.
37+
- **Menus**: supports header menus and footer menus.
38+
- Related posts slide.
39+
- :framed_picture: Image viewer: zoom in/out image.
40+
- :card_index_dividers: **Archives**: group by year and month.
41+
- :memo: **Multiple authors**: articles can be co-authored.
42+
- :globe_with_meridians: **Multilingual**.
43+
- :arrow_left: **RTL**: supports Right-to-Left languages.
44+
- :arrow_up: Back/Return to top button.
45+
- Social links: supports header and footer social links.
46+
- Content: supports KaTex (math), Mermaid (diagrams) and Bootstrap shortcodes.
47+
- ...
48+
49+
## Screenshot
50+
51+
![Screenshot](https://raw.githubusercontent.com/hbstack/theme/main/images/screenshot.png)

archetypes/blog.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
title: "{{ replace .Name "-" " " | title }}"
3+
date: {{ .Date }}
4+
draft: true
5+
description:
6+
noindex: false
7+
featured: false
8+
pinned: false
9+
# comments: false
10+
series:
11+
# -
12+
categories:
13+
# -
14+
tags:
15+
# -
16+
images:
17+
# -
18+
# menu:
19+
# main:
20+
# weight: 100
21+
# params:
22+
# icon:
23+
# vendor: bs
24+
# name: book
25+
# color: '#e24d0e'
26+
---
27+
28+
Summary.
29+
30+
<!--more-->
31+
32+
Content.

archetypes/docs.md

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
title: "{{ replace .Name "-" " " | title }}"
3+
# linkTitle:
4+
date: {{ .Date }}
5+
draft: true
6+
description:
7+
noindex: false
8+
# comments: false
9+
nav_weight: 1000
10+
# nav_icon:
11+
# vendor: bootstrap
12+
# name: toggles
13+
# color: '#e24d0e'
14+
series:
15+
- Docs
16+
categories:
17+
# -
18+
tags:
19+
# -
20+
images:
21+
# -
22+
# menu:
23+
# main:
24+
# weight: 100
25+
# params:
26+
# icon:
27+
# vendor: bs
28+
# name: book
29+
# color: '#e24d0e'
30+
---
31+
32+
Summary.
33+
34+
<!--more-->
35+
36+
Content.

archetypes/gallery.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
title: "{{ replace .Name "-" " " | title }}"
3+
date: {{ .Date }}
4+
draft: true
5+
description:
6+
resources:
7+
- src: foo.jpg
8+
title: Foo
9+
params:
10+
author:
11+
source:
12+
---

archetypes/tutorials.md

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
title: "{{ replace .Name "-" " " | title }}"
3+
# linkTitle:
4+
date: {{ .Date }}
5+
draft: true
6+
description:
7+
noindex: false
8+
# comments: false
9+
nav_weight: 1000
10+
# nav_icon:
11+
# vendor: bootstrap
12+
# name: toggles
13+
# color: '#e24d0e'
14+
series:
15+
- Tutorial
16+
categories:
17+
# -
18+
tags:
19+
# -
20+
images:
21+
# menu:
22+
# main:
23+
# weight: 100
24+
# params:
25+
# icon:
26+
# vendor: bs
27+
# name: book
28+
# color: '#e24d0e'
29+
---
30+
31+
Summary.
32+
33+
<!--more-->
34+
35+
Content.

assets/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
jsconfig.json

assets/favicon.ico

15 KB
Binary file not shown.

assets/hb/modules/custom/js/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
// This script will be compiled into the JS bundle automatically.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
classes = []
2+
ids = []
3+
tags = []
4+
attributes = []
5+
safelist_deep = []
6+
safelist_greedy = []
7+
safelist_standard = []
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// This SCSS styles will be compiled into the CSS bundle automatically.
2+
3+
/*! purgecss start ignore */
4+
5+
/*! PUT YOU STYLE HERE TO AVOID GETTING REMOVING BY PURGECSS. */
6+
7+
/*! purgecss end ignore */
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Override the Bootstrap and HB SCSS variables.
2+
// See https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss.
3+
// See https://github.com/twbs/bootstrap/blob/main/scss/_variables-dark.scss.
4+
// $primary: red;

assets/images/logo.png

47.2 KB
Loading

assets/images/pwa/offline.png

2.43 KB
Loading

assets/mask-icon.svg

+35
Loading

0 commit comments

Comments
 (0)