Fixed with T77: Update PaperMod to the latest version.
- Feed Queries
- All Stories
- Search
- Feed Search
- Transactions
- Transaction Logs
Feed Search
Thu, Feb 19
Thu, Feb 19
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 moved T67: Memperbaharui tahun hak cipta di footer from Backlog to Done on the Sprints (30 Jan - 19 Feb 2026) board.
Mengganti tahun hak cipta dengan time.Now function. Lihat: https://gohugo.io/functions/time/now/.
Selesai dengan id 24366d1954210a7b292f6b74a3ddd693f0412b57. Diff: https://hq.nawan.my.id/P4.
nawan changed the point value for T3: Identifikasi perbandingan antara fitur-fitur di Redmine dan Phorge from 1 to 3.
nawan closed T3: Identifikasi perbandingan antara fitur-fitur di Redmine dan Phorge, a subtask of T1: Migrasi dari Redmine ke Phorge, as Resolved.
Sepertinya sudah tidak ada lagi yang bisa dilakukan di sini. Selanjutnya, ada baiknya untuk membuat halaman khusus yang membandingkan Redmine dengan Phabricator entah di Phriction atau di Zim Wiki.
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 9 2026
Feb 9 2026
nawan updated the task description for T3: Identifikasi perbandingan antara fitur-fitur di Redmine dan Phorge.
Feb 7 2026
Feb 7 2026
nawan moved T67: Memperbaharui tahun hak cipta di footer from Icebox to Backlog on the Sprints (30 Jan - 19 Feb 2026) board.
nawan moved T67: Memperbaharui tahun hak cipta di footer from Inbox to Static website on the Hostbrr board.
nawan moved T65: Enable FastCGI caching for this phorge instance from Unclassified to Phabricator on the Infra board.
nawan added a project to T65: Enable FastCGI caching for this phorge instance: narayana.nawan.my.id.
Feb 3 2026
Feb 3 2026
Jan 31 2026
Jan 31 2026
nawan moved T3: Identifikasi perbandingan antara fitur-fitur di Redmine dan Phorge from Icebox to Current on the Sprints (30 Jan - 19 Feb 2026) board.
nawan moved T3: Identifikasi perbandingan antara fitur-fitur di Redmine dan Phorge from Backlog to Current / Doing on the Redmine-Migration board.
nawan lowered the priority of T3: Identifikasi perbandingan antara fitur-fitur di Redmine dan Phorge from Normal to Low.
Jan 30 2026
Jan 30 2026
Jan 29 2026
Jan 29 2026
nawan updated the task description for T3: Identifikasi perbandingan antara fitur-fitur di Redmine dan Phorge.
Jan 28 2026
Jan 28 2026
Nothing we can do here. See T2#403.
nawan renamed T3: Identifikasi perbandingan antara fitur-fitur di Redmine dan Phorge from Identifikasi fitur-fitur di Redmine yang tidak ada di Phorge to Identifikasi perbandingan antara fitur-fitur di Redmine dan Phorge.
nawan closed T2: Buat duplikat Redmine issue di Maniphest, a subtask of T1: Migrasi dari Redmine ke Phorge, as Resolved.
Server web.nawan.my.id sudah meninggal dan karenanya tidak ada lagi yang bisa dilakukan.
Jan 27 2026
Jan 27 2026
nawan moved T3: Identifikasi perbandingan antara fitur-fitur di Redmine dan Phorge from Current / Doing to Backlog on the Redmine-Migration board.
nawan moved T1: Migrasi dari Redmine ke Phorge from Current / Doing to Backlog on the Redmine-Migration board.
Jan 25 2026
Jan 25 2026
nawan moved T1: Migrasi dari Redmine ke Phorge from Inbox 📥 to Current / Doing on the Redmine-Migration board.
nawan moved T2: Buat duplikat Redmine issue di Maniphest from Inbox to Redmine migration on the User-nawan board.
nawan moved T2: Buat duplikat Redmine issue di Maniphest from Inbox 📥 to Current / Doing on the Redmine-Migration board.
nawan moved T3: Identifikasi perbandingan antara fitur-fitur di Redmine dan Phorge from Inbox to Redmine migration on the User-nawan board.
nawan moved T3: Identifikasi perbandingan antara fitur-fitur di Redmine dan Phorge from Inbox 📥 to Current / Doing on the Redmine-Migration board.
nawan set the point value for T3: Identifikasi perbandingan antara fitur-fitur di Redmine dan Phorge to 1.
nawan moved T2: Buat duplikat Redmine issue di Maniphest from Unclassified to Phabricator on the Infra board.
nawan moved T3: Identifikasi perbandingan antara fitur-fitur di Redmine dan Phorge from Unclassified to Phabricator on the Infra board.
nawan changed the status of T3: Identifikasi perbandingan antara fitur-fitur di Redmine dan Phorge, a subtask of T1: Migrasi dari Redmine ke Phorge, from Open to In Progress.
nawan changed the status of T3: Identifikasi perbandingan antara fitur-fitur di Redmine dan Phorge from Open to In Progress.
Jan 24 2026
Jan 24 2026
nawan changed the status of T2: Buat duplikat Redmine issue di Maniphest, a subtask of T1: Migrasi dari Redmine ke Phorge, from Open to In Progress.
nawan updated the task description for T3: Identifikasi perbandingan antara fitur-fitur di Redmine dan Phorge.
nawan added a parent task for T3: Identifikasi perbandingan antara fitur-fitur di Redmine dan Phorge: T1: Migrasi dari Redmine ke Phorge.
Jan 23 2026
Jan 23 2026