diff --git a/starters/blog/.github/workflows/publish.yaml b/starters/blog/.github/workflows/publish.yaml index abbefe2c..b02b9c11 100644 --- a/starters/blog/.github/workflows/publish.yaml +++ b/starters/blog/.github/workflows/publish.yaml @@ -1,7 +1,7 @@ name: Deploy website to GitHub Pages env: - WC_HUGO_VERSION: '0.123.6' + WC_HUGO_VERSION: '0.123.7' on: # Trigger the workflow every time you push to the `main` branch diff --git a/starters/blog/config/_default/hugo.yaml b/starters/blog/config/_default/hugo.yaml index c484c48f..11d520c6 100644 --- a/starters/blog/config/_default/hugo.yaml +++ b/starters/blog/config/_default/hugo.yaml @@ -13,7 +13,7 @@ baseURL: 'https://example.com/' # Website URL cascade: # Blog post options - _target: - path: /post/** + path: /blog/** kind: page pager: true editable: true diff --git a/starters/blog/content/post/_index.md b/starters/blog/content/blog/_index.md similarity index 100% rename from starters/blog/content/post/_index.md rename to starters/blog/content/blog/_index.md diff --git a/starters/blog/content/post/data-visualization/featured.jpg b/starters/blog/content/blog/data-visualization/featured.jpg similarity index 100% rename from starters/blog/content/post/data-visualization/featured.jpg rename to starters/blog/content/blog/data-visualization/featured.jpg diff --git a/starters/blog/content/post/data-visualization/index.md b/starters/blog/content/blog/data-visualization/index.md similarity index 100% rename from starters/blog/content/post/data-visualization/index.md rename to starters/blog/content/blog/data-visualization/index.md diff --git a/starters/blog/content/post/data-visualization/line-chart.json b/starters/blog/content/blog/data-visualization/line-chart.json similarity index 100% rename from starters/blog/content/post/data-visualization/line-chart.json rename to starters/blog/content/blog/data-visualization/line-chart.json diff --git a/starters/blog/content/post/data-visualization/results.csv b/starters/blog/content/blog/data-visualization/results.csv similarity index 100% rename from starters/blog/content/post/data-visualization/results.csv rename to starters/blog/content/blog/data-visualization/results.csv diff --git a/starters/blog/content/post/get-started/featured.jpg b/starters/blog/content/blog/get-started/featured.jpg similarity index 100% rename from starters/blog/content/post/get-started/featured.jpg rename to starters/blog/content/blog/get-started/featured.jpg diff --git a/starters/blog/content/post/get-started/index.md b/starters/blog/content/blog/get-started/index.md similarity index 100% rename from starters/blog/content/post/get-started/index.md rename to starters/blog/content/blog/get-started/index.md diff --git a/starters/blog/content/post/project-management/featured.jpg b/starters/blog/content/blog/project-management/featured.jpg similarity index 100% rename from starters/blog/content/post/project-management/featured.jpg rename to starters/blog/content/blog/project-management/featured.jpg diff --git a/starters/blog/content/post/project-management/index.md b/starters/blog/content/blog/project-management/index.md similarity index 100% rename from starters/blog/content/post/project-management/index.md rename to starters/blog/content/blog/project-management/index.md diff --git a/starters/blog/content/post/second-brain/featured.jpg b/starters/blog/content/blog/second-brain/featured.jpg similarity index 100% rename from starters/blog/content/post/second-brain/featured.jpg rename to starters/blog/content/blog/second-brain/featured.jpg diff --git a/starters/blog/content/post/second-brain/index.md b/starters/blog/content/blog/second-brain/index.md similarity index 100% rename from starters/blog/content/post/second-brain/index.md rename to starters/blog/content/blog/second-brain/index.md diff --git a/starters/blog/content/post/teach-courses/ambient-piano.mp3 b/starters/blog/content/blog/teach-courses/ambient-piano.mp3 similarity index 100% rename from starters/blog/content/post/teach-courses/ambient-piano.mp3 rename to starters/blog/content/blog/teach-courses/ambient-piano.mp3 diff --git a/starters/blog/content/post/teach-courses/featured.jpg b/starters/blog/content/blog/teach-courses/featured.jpg similarity index 100% rename from starters/blog/content/post/teach-courses/featured.jpg rename to starters/blog/content/blog/teach-courses/featured.jpg diff --git a/starters/blog/content/post/teach-courses/index.md b/starters/blog/content/blog/teach-courses/index.md similarity index 100% rename from starters/blog/content/post/teach-courses/index.md rename to starters/blog/content/blog/teach-courses/index.md diff --git a/starters/blog/go.mod b/starters/blog/go.mod index 99a58611..42f16b3c 100644 --- a/starters/blog/go.mod +++ b/starters/blog/go.mod @@ -4,5 +4,5 @@ go 1.19 require ( github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-netlify v1.1.2-0.20231125204555-f431a4a2c705 - github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind v0.2.1-0.20240228195300-ae83c68788d6 + github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind v0.2.1-0.20240303165809-469a458ab94f ) diff --git a/starters/blog/hugoblox.yaml b/starters/blog/hugoblox.yaml index 9797bcea..976a9367 100644 --- a/starters/blog/hugoblox.yaml +++ b/starters/blog/hugoblox.yaml @@ -1,2 +1,2 @@ build: - hugo_version: '0.123.6' + hugo_version: '0.123.7' diff --git a/starters/blog/netlify.toml b/starters/blog/netlify.toml index d1318cbe..63849ee8 100644 --- a/starters/blog/netlify.toml +++ b/starters/blog/netlify.toml @@ -3,7 +3,7 @@ publish = "public" [build.environment] - HUGO_VERSION = "0.123.6" + HUGO_VERSION = "0.123.7" GO_VERSION = "1.21.5" NODE_VERSION = "21.1.0" HUGO_ENABLEGITINFO = "true" diff --git a/starters/documentation/.github/workflows/publish.yaml b/starters/documentation/.github/workflows/publish.yaml index 9b65cc14..b942bcc0 100644 --- a/starters/documentation/.github/workflows/publish.yaml +++ b/starters/documentation/.github/workflows/publish.yaml @@ -1,7 +1,7 @@ name: Deploy website to GitHub Pages env: - WC_HUGO_VERSION: '0.123.6' + WC_HUGO_VERSION: '0.123.7' on: # Trigger the workflow every time you push to the `main` branch diff --git a/starters/documentation/config/_default/hugo.yaml b/starters/documentation/config/_default/hugo.yaml index 56a34e7c..e73aff6d 100644 --- a/starters/documentation/config/_default/hugo.yaml +++ b/starters/documentation/config/_default/hugo.yaml @@ -22,7 +22,7 @@ cascade: show_date_updated: true # Blog post options - _target: - path: /post/** + path: /blog/** kind: page pager: true editable: true @@ -62,7 +62,6 @@ footnotereturnlinkcontents: ^ ignoreFiles: [\.ipynb$, .ipynb_checkpoints$, \.Rmd$, \.Rmarkdown$, _cache$] enableInlineShortcodes: true permalinks: - post: '/blog/:slug/' authors: '/author/:slug/' tags: '/tag/:slug/' categories: '/category/:slug/' diff --git a/starters/documentation/content/post/_index.md b/starters/documentation/content/blog/_index.md similarity index 100% rename from starters/documentation/content/post/_index.md rename to starters/documentation/content/blog/_index.md diff --git a/starters/documentation/content/post/v1.0.0/featured.jpg b/starters/documentation/content/blog/v1.0.0/featured.jpg similarity index 100% rename from starters/documentation/content/post/v1.0.0/featured.jpg rename to starters/documentation/content/blog/v1.0.0/featured.jpg diff --git a/starters/documentation/content/post/v1.0.0/index.md b/starters/documentation/content/blog/v1.0.0/index.md similarity index 100% rename from starters/documentation/content/post/v1.0.0/index.md rename to starters/documentation/content/blog/v1.0.0/index.md diff --git a/starters/documentation/content/post/v2.0.0/featured.jpg b/starters/documentation/content/blog/v2.0.0/featured.jpg similarity index 100% rename from starters/documentation/content/post/v2.0.0/featured.jpg rename to starters/documentation/content/blog/v2.0.0/featured.jpg diff --git a/starters/documentation/content/post/v2.0.0/index.md b/starters/documentation/content/blog/v2.0.0/index.md similarity index 100% rename from starters/documentation/content/post/v2.0.0/index.md rename to starters/documentation/content/blog/v2.0.0/index.md diff --git a/starters/documentation/go.mod b/starters/documentation/go.mod index 2e7377a3..536f0693 100644 --- a/starters/documentation/go.mod +++ b/starters/documentation/go.mod @@ -4,5 +4,5 @@ go 1.15 require ( github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-netlify v1.1.2-0.20240217212918-ae7f0c597978 - github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind v0.2.1-0.20240228195300-ae83c68788d6 + github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind v0.2.1-0.20240303165809-469a458ab94f ) diff --git a/starters/documentation/hugoblox.yaml b/starters/documentation/hugoblox.yaml index 9797bcea..976a9367 100644 --- a/starters/documentation/hugoblox.yaml +++ b/starters/documentation/hugoblox.yaml @@ -1,2 +1,2 @@ build: - hugo_version: '0.123.6' + hugo_version: '0.123.7' diff --git a/starters/documentation/netlify.toml b/starters/documentation/netlify.toml index 5c9050de..be5d5f27 100644 --- a/starters/documentation/netlify.toml +++ b/starters/documentation/netlify.toml @@ -3,7 +3,7 @@ publish = "public" [build.environment] - HUGO_VERSION = "0.123.6" + HUGO_VERSION = "0.123.7" HUGO_ENABLEGITINFO = "true" [context.production.environment] diff --git a/starters/landing-page/.github/workflows/publish.yaml b/starters/landing-page/.github/workflows/publish.yaml index 9b65cc14..b942bcc0 100644 --- a/starters/landing-page/.github/workflows/publish.yaml +++ b/starters/landing-page/.github/workflows/publish.yaml @@ -1,7 +1,7 @@ name: Deploy website to GitHub Pages env: - WC_HUGO_VERSION: '0.123.6' + WC_HUGO_VERSION: '0.123.7' on: # Trigger the workflow every time you push to the `main` branch diff --git a/starters/landing-page/config/_default/hugo.yaml b/starters/landing-page/config/_default/hugo.yaml index adaa55b4..9698960e 100644 --- a/starters/landing-page/config/_default/hugo.yaml +++ b/starters/landing-page/config/_default/hugo.yaml @@ -13,7 +13,7 @@ baseURL: 'https://example.com/' # Website URL cascade: # Blog post options - _target: - path: /post/** + path: /blog/** kind: page pager: true editable: true @@ -30,10 +30,8 @@ cascade: enable: true # Blog section options - _target: - path: /post/* + path: /blog/* kind: section - # Change url to /blog/ - url: /blog/ # Set the listing view view: date-title-summary @@ -60,7 +58,6 @@ enableRobotsTXT: true footnotereturnlinkcontents: ^ ignoreFiles: [\.ipynb$, .ipynb_checkpoints$, \.Rmd$, \.Rmarkdown$, _cache$] permalinks: - post: '/blog/:slug/' authors: '/author/:slug/' tags: '/tag/:slug/' categories: '/category/:slug/' diff --git a/starters/landing-page/content/post/_index.md b/starters/landing-page/content/blog/_index.md similarity index 100% rename from starters/landing-page/content/post/_index.md rename to starters/landing-page/content/blog/_index.md diff --git a/starters/landing-page/content/post/data-visualization/featured.jpg b/starters/landing-page/content/blog/data-visualization/featured.jpg similarity index 100% rename from starters/landing-page/content/post/data-visualization/featured.jpg rename to starters/landing-page/content/blog/data-visualization/featured.jpg diff --git a/starters/landing-page/content/post/data-visualization/index.md b/starters/landing-page/content/blog/data-visualization/index.md similarity index 100% rename from starters/landing-page/content/post/data-visualization/index.md rename to starters/landing-page/content/blog/data-visualization/index.md diff --git a/starters/landing-page/content/post/data-visualization/line-chart.json b/starters/landing-page/content/blog/data-visualization/line-chart.json similarity index 100% rename from starters/landing-page/content/post/data-visualization/line-chart.json rename to starters/landing-page/content/blog/data-visualization/line-chart.json diff --git a/starters/landing-page/content/post/data-visualization/results.csv b/starters/landing-page/content/blog/data-visualization/results.csv similarity index 100% rename from starters/landing-page/content/post/data-visualization/results.csv rename to starters/landing-page/content/blog/data-visualization/results.csv diff --git a/starters/landing-page/content/post/get-started/featured.jpg b/starters/landing-page/content/blog/get-started/featured.jpg similarity index 100% rename from starters/landing-page/content/post/get-started/featured.jpg rename to starters/landing-page/content/blog/get-started/featured.jpg diff --git a/starters/landing-page/content/post/get-started/index.md b/starters/landing-page/content/blog/get-started/index.md similarity index 100% rename from starters/landing-page/content/post/get-started/index.md rename to starters/landing-page/content/blog/get-started/index.md diff --git a/starters/landing-page/content/post/project-management/featured.jpg b/starters/landing-page/content/blog/project-management/featured.jpg similarity index 100% rename from starters/landing-page/content/post/project-management/featured.jpg rename to starters/landing-page/content/blog/project-management/featured.jpg diff --git a/starters/landing-page/content/post/project-management/index.md b/starters/landing-page/content/blog/project-management/index.md similarity index 100% rename from starters/landing-page/content/post/project-management/index.md rename to starters/landing-page/content/blog/project-management/index.md diff --git a/starters/landing-page/content/post/second-brain/featured.jpg b/starters/landing-page/content/blog/second-brain/featured.jpg similarity index 100% rename from starters/landing-page/content/post/second-brain/featured.jpg rename to starters/landing-page/content/blog/second-brain/featured.jpg diff --git a/starters/landing-page/content/post/second-brain/index.md b/starters/landing-page/content/blog/second-brain/index.md similarity index 100% rename from starters/landing-page/content/post/second-brain/index.md rename to starters/landing-page/content/blog/second-brain/index.md diff --git a/starters/landing-page/content/post/teach-courses/ambient-piano.mp3 b/starters/landing-page/content/blog/teach-courses/ambient-piano.mp3 similarity index 100% rename from starters/landing-page/content/post/teach-courses/ambient-piano.mp3 rename to starters/landing-page/content/blog/teach-courses/ambient-piano.mp3 diff --git a/starters/landing-page/content/post/teach-courses/featured.jpg b/starters/landing-page/content/blog/teach-courses/featured.jpg similarity index 100% rename from starters/landing-page/content/post/teach-courses/featured.jpg rename to starters/landing-page/content/blog/teach-courses/featured.jpg diff --git a/starters/landing-page/content/post/teach-courses/index.md b/starters/landing-page/content/blog/teach-courses/index.md similarity index 100% rename from starters/landing-page/content/post/teach-courses/index.md rename to starters/landing-page/content/blog/teach-courses/index.md diff --git a/starters/landing-page/go.mod b/starters/landing-page/go.mod index f4fcb7af..d5eec3e9 100644 --- a/starters/landing-page/go.mod +++ b/starters/landing-page/go.mod @@ -4,5 +4,5 @@ go 1.19 require ( github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-netlify v1.1.2-0.20231108143325-448ed0e3bd2b - github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind v0.2.1-0.20240228195300-ae83c68788d6 + github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind v0.2.1-0.20240303165809-469a458ab94f ) diff --git a/starters/landing-page/hugoblox.yaml b/starters/landing-page/hugoblox.yaml index 9797bcea..976a9367 100644 --- a/starters/landing-page/hugoblox.yaml +++ b/starters/landing-page/hugoblox.yaml @@ -1,2 +1,2 @@ build: - hugo_version: '0.123.6' + hugo_version: '0.123.7' diff --git a/starters/landing-page/netlify.toml b/starters/landing-page/netlify.toml index 6abb1086..8375f287 100644 --- a/starters/landing-page/netlify.toml +++ b/starters/landing-page/netlify.toml @@ -3,7 +3,7 @@ publish = "public" [build.environment] - HUGO_VERSION = "0.123.6" + HUGO_VERSION = "0.123.7" HUGO_ENABLEGITINFO = "true" [context.production.environment] diff --git a/starters/link-in-bio/.github/workflows/publish.yaml b/starters/link-in-bio/.github/workflows/publish.yaml index 3de38963..e30468ee 100644 --- a/starters/link-in-bio/.github/workflows/publish.yaml +++ b/starters/link-in-bio/.github/workflows/publish.yaml @@ -1,7 +1,7 @@ name: Deploy website to GitHub Pages env: - WC_HUGO_VERSION: '0.123.6' + WC_HUGO_VERSION: '0.123.7' on: # Trigger the workflow every time you push to the `main` branch diff --git a/starters/link-in-bio/go.mod b/starters/link-in-bio/go.mod index 8adb4aed..526ca8dc 100644 --- a/starters/link-in-bio/go.mod +++ b/starters/link-in-bio/go.mod @@ -4,5 +4,5 @@ go 1.19 require ( github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-netlify v1.1.2-0.20231108143325-448ed0e3bd2b - github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind v0.2.1-0.20240228195300-ae83c68788d6 + github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind v0.2.1-0.20240303165809-469a458ab94f ) diff --git a/starters/link-in-bio/hugoblox.yaml b/starters/link-in-bio/hugoblox.yaml index 9797bcea..976a9367 100644 --- a/starters/link-in-bio/hugoblox.yaml +++ b/starters/link-in-bio/hugoblox.yaml @@ -1,2 +1,2 @@ build: - hugo_version: '0.123.6' + hugo_version: '0.123.7' diff --git a/starters/link-in-bio/netlify.toml b/starters/link-in-bio/netlify.toml index 6abb1086..8375f287 100644 --- a/starters/link-in-bio/netlify.toml +++ b/starters/link-in-bio/netlify.toml @@ -3,7 +3,7 @@ publish = "public" [build.environment] - HUGO_VERSION = "0.123.6" + HUGO_VERSION = "0.123.7" HUGO_ENABLEGITINFO = "true" [context.production.environment] diff --git a/starters/resume/.github/workflows/publish.yaml b/starters/resume/.github/workflows/publish.yaml index 3de38963..e30468ee 100644 --- a/starters/resume/.github/workflows/publish.yaml +++ b/starters/resume/.github/workflows/publish.yaml @@ -1,7 +1,7 @@ name: Deploy website to GitHub Pages env: - WC_HUGO_VERSION: '0.123.6' + WC_HUGO_VERSION: '0.123.7' on: # Trigger the workflow every time you push to the `main` branch diff --git a/starters/resume/config/_default/menus.yaml b/starters/resume/config/_default/menus.yaml index 523bc0ba..348fbe3e 100644 --- a/starters/resume/config/_default/menus.yaml +++ b/starters/resume/config/_default/menus.yaml @@ -8,7 +8,7 @@ main: url: / weight: 10 - name: Blog - url: post/ + url: blog/ weight: 20 - name: Uses url: uses/ diff --git a/starters/resume/go.mod b/starters/resume/go.mod index 12c97d3f..b23c7221 100644 --- a/starters/resume/go.mod +++ b/starters/resume/go.mod @@ -4,5 +4,5 @@ go 1.19 require ( github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-netlify v1.1.2-0.20231125200520-804c70f7efb8 - github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind v0.2.1-0.20240228195300-ae83c68788d6 + github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind v0.2.1-0.20240303165809-469a458ab94f ) diff --git a/starters/resume/hugoblox.yaml b/starters/resume/hugoblox.yaml index 9797bcea..976a9367 100644 --- a/starters/resume/hugoblox.yaml +++ b/starters/resume/hugoblox.yaml @@ -1,2 +1,2 @@ build: - hugo_version: '0.123.6' + hugo_version: '0.123.7' diff --git a/starters/resume/netlify.toml b/starters/resume/netlify.toml index 6abb1086..8375f287 100644 --- a/starters/resume/netlify.toml +++ b/starters/resume/netlify.toml @@ -3,7 +3,7 @@ publish = "public" [build.environment] - HUGO_VERSION = "0.123.6" + HUGO_VERSION = "0.123.7" HUGO_ENABLEGITINFO = "true" [context.production.environment]