35 | {{.Title}} 36 |
37 |{{ .Summary }}
38 | 39 | 40 |├── .hugo_build.lock ├── exampleSite ├── .hugo_build.lock ├── assets │ ├── scss │ │ └── custom.scss │ └── images │ │ ├── logo.png │ │ ├── about.jpg │ │ ├── favicon.png │ │ ├── post │ │ ├── 01.jpg │ │ ├── 02.jpg │ │ ├── 03.jpg │ │ ├── 04.jpg │ │ ├── 05.jpg │ │ ├── 06.jpg │ │ └── 07.jpg │ │ └── author │ │ ├── author.jpg │ │ └── author-2.jpg ├── content │ └── english │ │ ├── contact.md │ │ ├── blog │ │ ├── _index.md │ │ ├── post-1.md │ │ ├── post-3.md │ │ ├── post-8.md │ │ ├── post-2.md │ │ ├── post-6.md │ │ ├── post-5.md │ │ ├── post-7.md │ │ └── post-4.md │ │ ├── author │ │ ├── _index.md │ │ ├── lubana-era.md │ │ └── henara-colii.md │ │ ├── search.md │ │ ├── about.md │ │ ├── privacy.md │ │ ├── terms-conditions.md │ │ └── elements.md ├── config │ └── _default │ │ ├── languages.toml │ │ ├── module.toml │ │ ├── menus.en.toml │ │ ├── hugo.toml │ │ └── params.toml ├── postcss.config.js ├── go.mod ├── i18n │ └── en.yaml └── hugo.toml ├── .markdownlint.json ├── layouts ├── partials │ ├── widgets │ │ ├── widget-wrapper.html │ │ ├── social.html │ │ ├── search.html │ │ ├── tags.html │ │ └── categories.html │ ├── essentials │ │ ├── head.html │ │ ├── script.html │ │ ├── style.html │ │ ├── footer.html │ │ └── header.html │ ├── components │ │ ├── page-header.html │ │ └── social-share.html │ └── post-share.html ├── 404.html ├── _default │ ├── list.html │ ├── terms.html │ ├── baseof.html │ ├── contact.html │ ├── post.html │ ├── about.html │ └── single.html ├── author │ ├── single.html │ └── list.html └── index.html ├── .vscode └── extensions.json ├── netlify.toml ├── vercel.json ├── archetypes └── default.md ├── .gitignore ├── .prettierrc ├── static └── sitepins-manifest.json ├── .sitepins ├── config.json └── schema │ ├── author.json │ └── blog.json ├── scripts ├── clearModules.js ├── projectSetup.js └── themeSetup.js ├── assets ├── scss │ ├── _mixins.scss │ ├── _buttons.scss │ ├── _typography.scss │ ├── style.scss │ ├── templates │ │ ├── _bootstrap.scss │ │ ├── _main.scss │ │ └── _navigation.scss │ └── _common.scss ├── js │ ├── script.js │ └── bootstrap.js └── plugins │ ├── instagram-feed │ └── instagram-feed.js │ └── bootstrap │ └── bootstrap.min.js ├── .gitlab-ci.yml ├── .jshintrc ├── vercel-build.sh ├── package.json └── README.md /.hugo_build.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleSite/.hugo_build.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleSite/assets/scss/custom.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- 1 | { 2 | "MD033": false, 3 | "MD034": false, 4 | "MD013": false 5 | } 6 | -------------------------------------------------------------------------------- /exampleSite/content/english/contact.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Contact" 3 | layout: "contact" 4 | draft: false 5 | --- -------------------------------------------------------------------------------- /layouts/partials/widgets/widget-wrapper.html: -------------------------------------------------------------------------------- 1 | {{- range .Widgets -}} 2 | {{- partial ( print "widgets/" . ) $.Scope -}} 3 | {{- end -}} -------------------------------------------------------------------------------- /exampleSite/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/bookworm-light-hugo/HEAD/exampleSite/assets/images/logo.png -------------------------------------------------------------------------------- /exampleSite/content/english/blog/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Blog" 3 | description: "meta description" 4 | draft: false 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /exampleSite/assets/images/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/bookworm-light-hugo/HEAD/exampleSite/assets/images/about.jpg -------------------------------------------------------------------------------- /exampleSite/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/bookworm-light-hugo/HEAD/exampleSite/assets/images/favicon.png -------------------------------------------------------------------------------- /exampleSite/assets/images/post/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/bookworm-light-hugo/HEAD/exampleSite/assets/images/post/01.jpg -------------------------------------------------------------------------------- /exampleSite/assets/images/post/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/bookworm-light-hugo/HEAD/exampleSite/assets/images/post/02.jpg -------------------------------------------------------------------------------- /exampleSite/assets/images/post/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/bookworm-light-hugo/HEAD/exampleSite/assets/images/post/03.jpg -------------------------------------------------------------------------------- /exampleSite/assets/images/post/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/bookworm-light-hugo/HEAD/exampleSite/assets/images/post/04.jpg -------------------------------------------------------------------------------- /exampleSite/assets/images/post/05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/bookworm-light-hugo/HEAD/exampleSite/assets/images/post/05.jpg -------------------------------------------------------------------------------- /exampleSite/assets/images/post/06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/bookworm-light-hugo/HEAD/exampleSite/assets/images/post/06.jpg -------------------------------------------------------------------------------- /exampleSite/assets/images/post/07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/bookworm-light-hugo/HEAD/exampleSite/assets/images/post/07.jpg -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [ 3 | "budparr.language-hugo-vscode", 4 | "tamasfe.even-better-toml" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /exampleSite/assets/images/author/author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/bookworm-light-hugo/HEAD/exampleSite/assets/images/author/author.jpg -------------------------------------------------------------------------------- /exampleSite/assets/images/author/author-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/bookworm-light-hugo/HEAD/exampleSite/assets/images/author/author-2.jpg -------------------------------------------------------------------------------- /exampleSite/content/english/author/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Author" 3 | image: "" 4 | date: 2021-01-26T10:13:00+06:00 5 | draft: false 6 | menu: 7 | 8 | --- 9 | 10 | -------------------------------------------------------------------------------- /exampleSite/content/english/search.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Search Result" 3 | date: 2018-09-24T11:07:10+06:00 4 | description: "this is meta description" 5 | layout: "search" 6 | draft: false 7 | --- -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | publish = "public" 3 | command = "yarn project-setup && yarn build" 4 | 5 | [build.environment] 6 | HUGO_VERSION = "0.115.1" 7 | GO_VERSION = "1.20.5" 8 | HUGO_BASEURL = "/" -------------------------------------------------------------------------------- /exampleSite/config/_default/languages.toml: -------------------------------------------------------------------------------- 1 | ################ English language ################## 2 | [en] 3 | languageName = "En" 4 | languageCode = "en-us" 5 | contentDir = "content/english" 6 | weight = 1 7 | 8 | -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- 1 | { 2 | "builds": [ 3 | { 4 | "src": "vercel-build.sh", 5 | "use": "@vercel/static-build", 6 | "config": { 7 | "distDir": "public" 8 | } 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .Name "-" " " | title }}" 3 | date: {{ .Date }} 4 | # meta keywords 5 | keywords: [] 6 | # meta description 7 | description: "This is meta description" 8 | # save as draft 9 | draft: false 10 | --- -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Thumbs.db 2 | .DS_Store 3 | .dist 4 | .tmp 5 | .lock 6 | .sass-cache 7 | npm-debug.log 8 | node_modules 9 | builds 10 | package-lock.json 11 | public 12 | resources 13 | .hugo_build.lock 14 | jsconfig.json 15 | hugo_stats.json 16 | go.sum 17 | yarn.lock -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "overrides": [ 3 | { 4 | "files": ["*.html"], 5 | "options": { 6 | "parser": "go-template", 7 | "goTemplateBracketSpacing": true, 8 | "bracketSameLine": true 9 | } 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /static/sitepins-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Sitepins CMS", 3 | "description": "Git-based CMS detection file", 4 | "cms": "Sitepins", 5 | "generator": "nextjs", 6 | "html": "" | safeHTML }} 2 |
-------------------------------------------------------------------------------- /scripts/clearModules.js: -------------------------------------------------------------------------------- 1 | const fs = require("fs"); 2 | 3 | const clearModules = (filePath) => { 4 | if (fs.existsSync(filePath)) { 5 | let fileContent = fs.readFileSync(filePath, "utf8"); 6 | fileContent = fileContent.replace(/require\s*\([\s\S]*?\)/, ""); 7 | fs.writeFileSync(filePath, fileContent, "utf8"); 8 | } else { 9 | console.log("File does not exist."); 10 | } 11 | }; 12 | 13 | clearModules("go.mod"); 14 | clearModules("exampleSite/go.mod"); 15 | -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | 3 |{{- .Summary | truncate 100 -}} Read More
27 |{{ .Summary }}
38 | 39 | 40 |{{ .description }}
50 |Our Instagram
102 |This modern Hugo blog theme is perfect for creating any kind of blog website, including food, recipes, beauty, lifestyle, photography, travel, health, fitness, and more.
4 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
23 |
28 |
29 |