Fixed with T77: Update PaperMod to the latest version.
- Feed Queries
- All Stories
- Search
- Feed Search
- Transactions
- Transaction Logs
Feed Search
Sun, Mar 8
Sun, Mar 8
Thu, Mar 5
Thu, Mar 5
nawan edited projects for T29: Menambahkan penyangkalan pada postingan yang sudah lama, added: Sprints (5 Mar - 13 Mar 2026); removed Sprints (30 Jan - 19 Feb 2026).
Feb 11 2026
Feb 11 2026
Build success without error after T77: Update PaperMod to the latest version. For now, I should stick with the latest version of PaperMod because I use the latest version of Hugo from Fedora.
nawan@karl-marx:~/fossils/www$ hugo-deploy.sh Building Hugo site... Start building sites … hugo v0.152.2+extended linux/amd64 BuildDate=2025-12-14T00:00:00+00:00 VendorInfo=Fedora:0.152.2-1.fc42
nawan closed T77: Update PaperMod to the latest version, a subtask of T76: PaperMod compatibility issues with Hugo 0.152.0+, as Resolved.
nawan closed T77: Update PaperMod to the latest version, a subtask of T78: Links resolve to localhost instead of baseURL configuration, as Resolved.
This patch should fix it.
| 1 | From abe66c82bebee9dae5fb91df429a16f1fd5c363c Mon Sep 17 00:00:00 2001 |
|---|---|
| 2 | From: Jake Bailey <5341706+jakebailey@users.noreply.github.com> |
| 3 | Date: Mon, 14 Apr 2025 17:46:51 -0700 |
| 4 | Subject: [PATCH 1/2] Make things work in 0.146+ |
| 5 | |
| 6 | --- |
| 7 | layouts/partials/head.html | 8 ++++---- |
| 8 | layouts/partials/templates/schema_json.html | 2 +- |
| 9 | layouts/partials/templates/twitter_cards.html | 2 +- |
| 10 | theme.toml | 2 +- |
| 11 | 4 files changed, 7 insertions(+), 7 deletions(-) |
| 12 | |
| 13 | diff --git a/layouts/partials/head.html b/layouts/partials/head.html |
| 14 | index 3e55c67007..ae6450abe1 100644 |
| 15 | --- a/layouts/partials/head.html |
| 16 | +++ b/layouts/partials/head.html |
| 17 | @@ -150,8 +150,8 @@ |
| 18 | |
| 19 | {{- /* Misc */}} |
| 20 | {{- if hugo.IsProduction | or (eq site.Params.env "production") }} |
| 21 | -{{- template "_internal/google_analytics.html" . }} |
| 22 | -{{- template "partials/templates/opengraph.html" . }} |
| 23 | -{{- template "partials/templates/twitter_cards.html" . }} |
| 24 | -{{- template "partials/templates/schema_json.html" . }} |
| 25 | +{{- partial "google_analytics.html" . }} |
| 26 | +{{- partial "templates/opengraph.html" . }} |
| 27 | +{{- partial "templates/twitter_cards.html" . }} |
| 28 | +{{- partial "templates/schema_json.html" . }} |
| 29 | {{- end -}} |
| 30 | diff --git a/layouts/partials/templates/schema_json.html b/layouts/partials/templates/schema_json.html |
| 31 | index dc3bfd6a0d..8a4efb41c9 100644 |
| 32 | --- a/layouts/partials/templates/schema_json.html |
| 33 | +++ b/layouts/partials/templates/schema_json.html |
| 34 | @@ -85,7 +85,7 @@ |
| 35 | {{ (path.Join .RelPermalink .Params.cover.image ) | absURL }}, |
| 36 | {{- end}} |
| 37 | {{- else }} |
| 38 | - {{- $images := partial "partials/templates/_funcs/get-page-images" . -}} |
| 39 | + {{- $images := partial "templates/_funcs/get-page-images" . -}} |
| 40 | {{- with index $images 0 -}} |
| 41 | "image": {{ .Permalink }}, |
| 42 | {{- end }} |
| 43 | diff --git a/layouts/partials/templates/twitter_cards.html b/layouts/partials/templates/twitter_cards.html |
| 44 | index 6b0d59bd1d..a6e1d05dd0 100644 |
| 45 | --- a/layouts/partials/templates/twitter_cards.html |
| 46 | +++ b/layouts/partials/templates/twitter_cards.html |
| 47 | @@ -6,7 +6,7 @@ |
| 48 | <meta name="twitter:image" content="{{ (path.Join .RelPermalink .Params.cover.image ) | absURL }}"> |
| 49 | {{- end}} |
| 50 | {{- else }} |
| 51 | -{{- $images := partial "partials/templates/_funcs/get-page-images" . -}} |
| 52 | +{{- $images := partial "templates/_funcs/get-page-images" . -}} |
| 53 | {{- with index $images 0 -}} |
| 54 | <meta name="twitter:card" content="summary_large_image"> |
| 55 | <meta name="twitter:image" content="{{ .Permalink }}"> |
| 56 | diff --git a/theme.toml b/theme.toml |
| 57 | index 391b248545..e4352b960b 100644 |
| 58 | --- a/theme.toml |
| 59 | +++ b/theme.toml |
| 60 | @@ -38,7 +38,7 @@ features = [ |
| 61 | "scroll-to-top", |
| 62 | "search" |
| 63 | ] |
| 64 | -min_version = "0.125.7" |
| 65 | +min_version = "0.146.0" |
| 66 | |
| 67 | [author] |
| 68 | name = "Aditya Telange" |
| 69 | |
| 70 | From 32f2e0e3d19ac7e0d990dd09f11a9d2302121d43 Mon Sep 17 00:00:00 2001 |
| 71 | From: Jake Bailey <5341706+jakebailey@users.noreply.github.com> |
| 72 | Date: Mon, 14 Apr 2025 17:48:55 -0700 |
| 73 | Subject: [PATCH 2/2] Versioning |
| 74 | |
| 75 | --- |
| 76 | .github/ISSUE_TEMPLATE/bug.yaml | 4 ++-- |
| 77 | .github/workflows/gh-pages.yml | 4 ++-- |
| 78 | README.md | 2 +- |
| 79 | layouts/_default/baseof.html | 4 ++-- |
| 80 | 4 files changed, 7 insertions(+), 7 deletions(-) |
| 81 | |
| 82 | diff --git a/.github/ISSUE_TEMPLATE/bug.yaml b/.github/ISSUE_TEMPLATE/bug.yaml |
| 83 | index 0cee3ee9d0..d7d7656786 100644 |
| 84 | --- a/.github/ISSUE_TEMPLATE/bug.yaml |
| 85 | +++ b/.github/ISSUE_TEMPLATE/bug.yaml |
| 86 | @@ -39,8 +39,8 @@ body: |
| 87 | label: Hugo Version |
| 88 | description: What version of Hugo are you running? |
| 89 | options: |
| 90 | - - Hugo >= 0.125.7 (Recommended - Minimum version required for PaperMod) |
| 91 | - - Hugo < 0.125.7 (Incompatible - Not recommended to build PaperMod on lower versions) |
| 92 | + - Hugo >= 0.146.0 (Recommended - Minimum version required for PaperMod) |
| 93 | + - Hugo < 0.146.0 (Incompatible - Not recommended to build PaperMod on lower versions) |
| 94 | validations: |
| 95 | required: true |
| 96 | - type: input |
| 97 | diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml |
| 98 | index 92b859f58f..7dc6f1c392 100644 |
| 99 | --- a/.github/workflows/gh-pages.yml |
| 100 | +++ b/.github/workflows/gh-pages.yml |
| 101 | @@ -15,7 +15,7 @@ on: |
| 102 | hugoVersion: |
| 103 | description: "Hugo Version" |
| 104 | required: false |
| 105 | - default: "0.125.7" |
| 106 | + default: "0.146.0" |
| 107 | |
| 108 | # Allow one concurrent deployment |
| 109 | concurrency: |
| 110 | @@ -38,7 +38,7 @@ jobs: |
| 111 | build: |
| 112 | runs-on: ubuntu-latest |
| 113 | env: |
| 114 | - HUGO_VERSION: ${{ github.event.inputs.hugoVersion || '0.125.7' }} |
| 115 | + HUGO_VERSION: ${{ github.event.inputs.hugoVersion || '0.146.0' }} |
| 116 | steps: |
| 117 | - name: Install Hugo CLI |
| 118 | run: | |
| 119 | diff --git a/README.md b/README.md |
| 120 | index 1c00072808..7b2956e6df 100644 |
| 121 | --- a/README.md |
| 122 | +++ b/README.md |
| 123 | @@ -11,7 +11,7 @@ |
| 124 | **ExampleSite** can be found here: [**exampleSite**](https://github.com/adityatelange/hugo-PaperMod/tree/exampleSite). Demo is built up with [exampleSite](https://github.com/adityatelange/hugo-PaperMod/tree/exampleSite) as source. |
| 125 | |
| 126 | [](https://themes.gohugo.io/themes/hugo-papermod/) |
| 127 | -[](https://github.com/gohugoio/hugo/releases/tag/v0.125.7) |
| 128 | +[](https://github.com/gohugoio/hugo/releases/tag/v0.146.0) |
| 129 | [](https://discord.gg/ahpmTvhVmp) |
| 130 | [](https://github.com/adityatelange/hugo-PaperMod/blob/master/LICENSE) |
| 131 |  |
| 132 | diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html |
| 133 | index 94e7d5857d..db3a50688c 100644 |
| 134 | --- a/layouts/_default/baseof.html |
| 135 | +++ b/layouts/_default/baseof.html |
| 136 | @@ -1,5 +1,5 @@ |
| 137 | -{{- if lt hugo.Version "0.125.7" }} |
| 138 | -{{- errorf "=> hugo v0.125.7 or greater is required for hugo-PaperMod to build " }} |
| 139 | +{{- if lt hugo.Version "0.146.0" }} |
| 140 | +{{- errorf "=> hugo v0.146.0 or greater is required for hugo-PaperMod to build " }} |
| 141 | {{- end -}} |
| 142 | |
| 143 | <!DOCTYPE html> |
nawan renamed T77: Update PaperMod to the latest version from Update PaperMod to latest version to Update PaperMod to the latest version.
nawan changed the status of T78: Links resolve to localhost instead of baseURL configuration from Open to Stalled.
Blocked by T77.
nawan changed the subtype of T78: Links resolve to localhost instead of baseURL configuration from "Task" to "Defect".
nawan added a parent task for T77: Update PaperMod to the latest version: T78: Links resolve to localhost instead of baseURL configuration.
Feb 10 2026
Feb 10 2026
nawan changed the status of T76: PaperMod compatibility issues with Hugo 0.152.0+ from Open to Stalled.
nawan moved T77: Update PaperMod to the latest version from Backlog to Chores on the nawan.my.id board.
nawan moved T77: Update PaperMod to the latest version from Inbox to Personal Site on the User-nawan board.
nawan moved T76: PaperMod compatibility issues with Hugo 0.152.0+ from Inbox to Personal Site on the User-nawan board.
nawan moved T76: PaperMod compatibility issues with Hugo 0.152.0+ from Icebox to Current on the Sprints (30 Jan - 19 Feb 2026) board.
nawan updated the title for P5 Hugo 0.152.2 build error from Hugo build error and warning to Hugo 0.152.2 build error.
nawan updated the title for P6 PaperMod theme compatibility fixes for Hugo 0.146.0+ from PaperMod theme compatibility fixs for Hugo 0.146.0+ to PaperMod theme compatibility fixes for Hugo 0.146.0+.
Selesai dengan id 24366d1954210a7b292f6b74a3ddd693f0412b57. Diff: https://hq.nawan.my.id/P4.
nawan moved T70: Perbaharui sidik jari OMEMO di situs pribadi from Backlog to Chores on the nawan.my.id board.
nawan moved T70: Perbaharui sidik jari OMEMO di situs pribadi from Inbox to Personal Site on the User-nawan board.
Feb 7 2026
Feb 7 2026
nawan moved T29: Menambahkan penyangkalan pada postingan yang sudah lama from Backlog to Ideas on the nawan.my.id board.
nawan moved T11: Menambahkan <link> tag ke https://nawan.my.id agar OpenID berfungsi from Backlog to Ideas on the nawan.my.id board.
Jan 29 2026
Jan 29 2026
Jan 28 2026
Jan 28 2026
nawan updated the task description for T11: Menambahkan <link> tag ke https://nawan.my.id agar OpenID berfungsi.
nawan changed Redmine Issue from https://todo.nawan.my.id/issues/4 to 4 on T6: Integrasikan Hypothesis.
Jan 27 2026
Jan 27 2026
nawan moved T11: Menambahkan <link> tag ke https://nawan.my.id agar OpenID berfungsi from Inbox to Static website on the Hostbrr board.
Jan 26 2026
Jan 26 2026
nawan moved T29: Menambahkan penyangkalan pada postingan yang sudah lama from Inbox to Static website on the Hostbrr board.
Jan 24 2026
Jan 24 2026
nawan triaged T11: Menambahkan <link> tag ke https://nawan.my.id agar OpenID berfungsi as Wishlist priority.