Fixed with T77: Update PaperMod to the latest version.
- Feed Queries
- All Stories
- Search
- Feed Search
- Transactions
- Transaction Logs
Sun, Mar 8
Thu, Mar 5
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
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> |
Blocked by T77.
Feb 10 2026
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.
Feb 7 2026
Feb 5 2026
Jan 30 2026
Ngomong-ngomong, Wikimedia Indonesia pernah menjalankan program hibah pulsa/paket internet senilai Rp200.000 per pengguna per bulan. Sepertinya program ini sudah ada sejak 2020 hingga berakhir pada 2023. Lebih lanjut: https://meta.wikimedia.org/wiki/Wikimedia_Indonesia/Hibah_Pulsa
Dari https://foundation.wikimedia.org/wiki/Archive:Wikipedia_Zero:
The Wikimedia Foundation created Wikipedia Zero in 2012 to address one barrier to participating in Wikipedia: high mobile phone data costs.