├── .eslintrc.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-push ├── .prettierrc ├── COMMUNITY-FEATURES.md ├── LICENSE.md ├── README.md ├── USERS.md ├── assets ├── css │ ├── archive.scss │ ├── buttons.scss │ ├── code.scss │ ├── fonts.scss │ ├── footer.scss │ ├── header.scss │ ├── logo.scss │ ├── main.scss │ ├── menu.scss │ ├── pagination.scss │ ├── post.scss │ ├── prism.scss │ ├── style.scss │ ├── terms.scss │ └── variables.scss ├── fonts │ ├── Inter-Bold.woff2 │ ├── Inter-BoldItalic.woff2 │ ├── Inter-Italic.woff2 │ ├── Inter-Medium.woff2 │ ├── Inter-MediumItalic.woff2 │ └── Inter-Regular.woff2 └── js │ ├── menu.js │ ├── prism.js │ └── theme.js ├── babel.config.js ├── config.toml ├── exampleSite ├── config.toml ├── content │ ├── about.md │ ├── archive.md │ ├── post │ │ └── hello.md │ └── showcase.md └── static │ └── img │ └── hello.jpg ├── go.mod ├── images ├── screenshot.png └── tn.png ├── layouts ├── 404.html ├── _default │ ├── _markup │ │ └── render-heading.html │ ├── baseof.html │ ├── index.html │ ├── list.html │ ├── rss.xml │ ├── single.html │ └── terms.html ├── archive │ └── list.html ├── partials │ ├── analytics.html │ ├── comments.html │ ├── extended_footer.html │ ├── extended_head.html │ ├── footer.html │ ├── greater-icon.html │ ├── head.html │ ├── header.html │ ├── lastmod.html │ ├── logo.html │ ├── menu.html │ ├── pagination.html │ ├── postcover.html │ ├── prepended_head.html │ └── theme-icon.html └── shortcodes │ ├── code.html │ ├── figure.html │ ├── image.html │ └── imgproc.html ├── package.hugo.json ├── package.json ├── postcss.config.js ├── static ├── img │ ├── apple-touch-icon-144-precomposed.png │ └── favicon.png └── style.css └── theme.toml /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | public 3 | -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/.husky/pre-push -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/.prettierrc -------------------------------------------------------------------------------- /COMMUNITY-FEATURES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/COMMUNITY-FEATURES.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/README.md -------------------------------------------------------------------------------- /USERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/USERS.md -------------------------------------------------------------------------------- /assets/css/archive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/assets/css/archive.scss -------------------------------------------------------------------------------- /assets/css/buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/assets/css/buttons.scss -------------------------------------------------------------------------------- /assets/css/code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/assets/css/code.scss -------------------------------------------------------------------------------- /assets/css/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/assets/css/fonts.scss -------------------------------------------------------------------------------- /assets/css/footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/assets/css/footer.scss -------------------------------------------------------------------------------- /assets/css/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/assets/css/header.scss -------------------------------------------------------------------------------- /assets/css/logo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/assets/css/logo.scss -------------------------------------------------------------------------------- /assets/css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/assets/css/main.scss -------------------------------------------------------------------------------- /assets/css/menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/assets/css/menu.scss -------------------------------------------------------------------------------- /assets/css/pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/assets/css/pagination.scss -------------------------------------------------------------------------------- /assets/css/post.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/assets/css/post.scss -------------------------------------------------------------------------------- /assets/css/prism.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/assets/css/prism.scss -------------------------------------------------------------------------------- /assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/assets/css/style.scss -------------------------------------------------------------------------------- /assets/css/terms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/assets/css/terms.scss -------------------------------------------------------------------------------- /assets/css/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/assets/css/variables.scss -------------------------------------------------------------------------------- /assets/fonts/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/assets/fonts/Inter-Bold.woff2 -------------------------------------------------------------------------------- /assets/fonts/Inter-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/assets/fonts/Inter-BoldItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/Inter-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/assets/fonts/Inter-Italic.woff2 -------------------------------------------------------------------------------- /assets/fonts/Inter-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/assets/fonts/Inter-Medium.woff2 -------------------------------------------------------------------------------- /assets/fonts/Inter-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/assets/fonts/Inter-MediumItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/assets/fonts/Inter-Regular.woff2 -------------------------------------------------------------------------------- /assets/js/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/assets/js/menu.js -------------------------------------------------------------------------------- /assets/js/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/assets/js/prism.js -------------------------------------------------------------------------------- /assets/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/assets/js/theme.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/babel.config.js -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleSite/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/exampleSite/config.toml -------------------------------------------------------------------------------- /exampleSite/content/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/exampleSite/content/about.md -------------------------------------------------------------------------------- /exampleSite/content/archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/exampleSite/content/archive.md -------------------------------------------------------------------------------- /exampleSite/content/post/hello.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/exampleSite/content/post/hello.md -------------------------------------------------------------------------------- /exampleSite/content/showcase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/exampleSite/content/showcase.md -------------------------------------------------------------------------------- /exampleSite/static/img/hello.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/exampleSite/static/img/hello.jpg -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/panr/hugo-theme-hello-friend 2 | 3 | go 1.19 4 | -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/images/tn.png -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/layouts/404.html -------------------------------------------------------------------------------- /layouts/_default/_markup/render-heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/layouts/_default/_markup/render-heading.html -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/layouts/_default/baseof.html -------------------------------------------------------------------------------- /layouts/_default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/layouts/_default/index.html -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/layouts/_default/list.html -------------------------------------------------------------------------------- /layouts/_default/rss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/layouts/_default/rss.xml -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/layouts/_default/single.html -------------------------------------------------------------------------------- /layouts/_default/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/layouts/_default/terms.html -------------------------------------------------------------------------------- /layouts/archive/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/layouts/archive/list.html -------------------------------------------------------------------------------- /layouts/partials/analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/layouts/partials/analytics.html -------------------------------------------------------------------------------- /layouts/partials/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/layouts/partials/comments.html -------------------------------------------------------------------------------- /layouts/partials/extended_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/layouts/partials/extended_footer.html -------------------------------------------------------------------------------- /layouts/partials/extended_head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/layouts/partials/extended_head.html -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/layouts/partials/footer.html -------------------------------------------------------------------------------- /layouts/partials/greater-icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/layouts/partials/greater-icon.html -------------------------------------------------------------------------------- /layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/layouts/partials/head.html -------------------------------------------------------------------------------- /layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/layouts/partials/header.html -------------------------------------------------------------------------------- /layouts/partials/lastmod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/layouts/partials/lastmod.html -------------------------------------------------------------------------------- /layouts/partials/logo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/layouts/partials/logo.html -------------------------------------------------------------------------------- /layouts/partials/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/layouts/partials/menu.html -------------------------------------------------------------------------------- /layouts/partials/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/layouts/partials/pagination.html -------------------------------------------------------------------------------- /layouts/partials/postcover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/layouts/partials/postcover.html -------------------------------------------------------------------------------- /layouts/partials/prepended_head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/layouts/partials/prepended_head.html -------------------------------------------------------------------------------- /layouts/partials/theme-icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/layouts/partials/theme-icon.html -------------------------------------------------------------------------------- /layouts/shortcodes/code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/layouts/shortcodes/code.html -------------------------------------------------------------------------------- /layouts/shortcodes/figure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/layouts/shortcodes/figure.html -------------------------------------------------------------------------------- /layouts/shortcodes/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/layouts/shortcodes/image.html -------------------------------------------------------------------------------- /layouts/shortcodes/imgproc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/layouts/shortcodes/imgproc.html -------------------------------------------------------------------------------- /package.hugo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/package.hugo.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/postcss.config.js -------------------------------------------------------------------------------- /static/img/apple-touch-icon-144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/static/img/apple-touch-icon-144-precomposed.png -------------------------------------------------------------------------------- /static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/static/img/favicon.png -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panr/hugo-theme-hello-friend/HEAD/theme.toml --------------------------------------------------------------------------------