Page MenuHomePhorge

InfraUmbrella
ActivePublic

Members

  • This project does not have any members.
  • View All

Watchers

  • This project does not have any watchers.
  • View All

Recent Activity

Thu, Feb 19

nawan triaged T71: Hosting Miniflux as Wishlist priority.
Thu, Feb 19, 18:07 · Infra, narayana.nawan.my.id

Feb 11 2026

nawan changed the point value for T77: Update PaperMod to the latest version from 5 to 1.
Feb 11 2026, 14:16 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, nawan.my.id, User-nawan
nawan closed T78: Links resolve to localhost instead of baseURL configuration as Resolved.

Fixed with T77: Update PaperMod to the latest version.

Feb 11 2026, 13:51 · Hugo, Infra, User-nawan, nawan.my.id
nawan added a subtask for T78: Links resolve to localhost instead of baseURL configuration: T76: PaperMod compatibility issues with Hugo 0.152.0+.
Feb 11 2026, 13:49 · Hugo, Infra, User-nawan, nawan.my.id
nawan added a parent task for T76: PaperMod compatibility issues with Hugo 0.152.0+: T78: Links resolve to localhost instead of baseURL configuration.
Feb 11 2026, 13:49 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, User-nawan, nawan.my.id
nawan closed T76: PaperMod compatibility issues with Hugo 0.152.0+ as Resolved.

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
Feb 11 2026, 13:48 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, User-nawan, nawan.my.id
nawan closed T77: Update PaperMod to the latest version, a subtask of T76: PaperMod compatibility issues with Hugo 0.152.0+, as Resolved.
Feb 11 2026, 13:39 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, User-nawan, nawan.my.id
nawan closed T77: Update PaperMod to the latest version as Resolved.
Feb 11 2026, 13:39 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, nawan.my.id, User-nawan
nawan closed T77: Update PaperMod to the latest version, a subtask of T78: Links resolve to localhost instead of baseURL configuration, as Resolved.
Feb 11 2026, 13:39 · Hugo, Infra, User-nawan, nawan.my.id
nawan updated the task description for T77: Update PaperMod to the latest version.
Feb 11 2026, 13:38 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, nawan.my.id, User-nawan
nawan updated the task description for T77: Update PaperMod to the latest version.
Feb 11 2026, 13:22 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, nawan.my.id, User-nawan
nawan added a comment to T76: PaperMod compatibility issues with Hugo 0.152.0+.

This patch should fix it.

1From abe66c82bebee9dae5fb91df429a16f1fd5c363c Mon Sep 17 00:00:00 2001
2From: Jake Bailey <5341706+jakebailey@users.noreply.github.com>
3Date: Mon, 14 Apr 2025 17:46:51 -0700
4Subject: [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
13diff --git a/layouts/partials/head.html b/layouts/partials/head.html
14index 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 -}}
30diff --git a/layouts/partials/templates/schema_json.html b/layouts/partials/templates/schema_json.html
31index 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 }}
43diff --git a/layouts/partials/templates/twitter_cards.html b/layouts/partials/templates/twitter_cards.html
44index 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 }}">
56diff --git a/theme.toml b/theme.toml
57index 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
70From 32f2e0e3d19ac7e0d990dd09f11a9d2302121d43 Mon Sep 17 00:00:00 2001
71From: Jake Bailey <5341706+jakebailey@users.noreply.github.com>
72Date: Mon, 14 Apr 2025 17:48:55 -0700
73Subject: [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
82diff --git a/.github/ISSUE_TEMPLATE/bug.yaml b/.github/ISSUE_TEMPLATE/bug.yaml
83index 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
97diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml
98index 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: |
119diff --git a/README.md b/README.md
120index 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 [![hugo-papermod](https://img.shields.io/badge/Hugo--Themes-@PaperMod-blue)](https://themes.gohugo.io/themes/hugo-papermod/)
127-[![Minimum Hugo Version](https://img.shields.io/static/v1?label=min-HUGO-version&message=>=v0.125.7&color=blue&logo=hugo)](https://github.com/gohugoio/hugo/releases/tag/v0.125.7)
128+[![Minimum Hugo Version](https://img.shields.io/static/v1?label=min-HUGO-version&message=>=v0.146.0&color=blue&logo=hugo)](https://github.com/gohugoio/hugo/releases/tag/v0.146.0)
129 [![Discord](https://img.shields.io/discord/971046860317921340?label=Discord&logo=discord)](https://discord.gg/ahpmTvhVmp)
130 [![GitHub](https://img.shields.io/github/license/adityatelange/hugo-PaperMod)](https://github.com/adityatelange/hugo-PaperMod/blob/master/LICENSE)
131 ![code-size](https://img.shields.io/github/languages/code-size/adityatelange/hugo-PaperMod)
132diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
133index 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>

Feb 11 2026, 13:20 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, User-nawan, nawan.my.id
nawan updated the task description for T76: PaperMod compatibility issues with Hugo 0.152.0+.
Feb 11 2026, 13:18 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, User-nawan, nawan.my.id
nawan renamed T77: Update PaperMod to the latest version from Update PaperMod to latest version to Update PaperMod to the latest version.
Feb 11 2026, 08:33 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, nawan.my.id, User-nawan
nawan changed the status of T78: Links resolve to localhost instead of baseURL configuration from Open to Stalled.

Blocked by T77.

Feb 11 2026, 00:07 · Hugo, Infra, User-nawan, nawan.my.id
nawan changed the subtype of T78: Links resolve to localhost instead of baseURL configuration from "Task" to "Defect".
Feb 11 2026, 00:05 · Hugo, Infra, User-nawan, nawan.my.id
nawan added a parent task for T77: Update PaperMod to the latest version: T78: Links resolve to localhost instead of baseURL configuration.
Feb 11 2026, 00:05 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, nawan.my.id, User-nawan
nawan added a subtask for T78: Links resolve to localhost instead of baseURL configuration: T77: Update PaperMod to the latest version.
Feb 11 2026, 00:05 · Hugo, Infra, User-nawan, nawan.my.id
nawan created T78: Links resolve to localhost instead of baseURL configuration.
Feb 11 2026, 00:03 · Hugo, Infra, User-nawan, nawan.my.id

Feb 10 2026

nawan changed the status of T76: PaperMod compatibility issues with Hugo 0.152.0+ from Open to Stalled.
Feb 10 2026, 23:52 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, User-nawan, nawan.my.id
nawan moved T77: Update PaperMod to the latest version from Backlog to Chores on the nawan.my.id board.
Feb 10 2026, 23:52 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, nawan.my.id, User-nawan
nawan moved T77: Update PaperMod to the latest version from Inbox to Personal Site on the User-nawan board.
Feb 10 2026, 23:52 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, nawan.my.id, User-nawan
nawan set the point value for T77: Update PaperMod to the latest version to 5.
Feb 10 2026, 23:52 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, nawan.my.id, User-nawan
nawan triaged T77: Update PaperMod to the latest version as Unbreak Now! priority.
Feb 10 2026, 23:51 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, nawan.my.id, User-nawan
nawan created T77: Update PaperMod to the latest version.
Feb 10 2026, 23:50 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, nawan.my.id, User-nawan
nawan moved T76: PaperMod compatibility issues with Hugo 0.152.0+ from Inbox to Personal Site on the User-nawan board.
Feb 10 2026, 23:46 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, User-nawan, nawan.my.id
nawan moved T76: PaperMod compatibility issues with Hugo 0.152.0+ from Icebox to Current on the Sprints (30 Jan - 19 Feb 2026) board.
Feb 10 2026, 23:45 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, User-nawan, nawan.my.id
nawan created T76: PaperMod compatibility issues with Hugo 0.152.0+.
Feb 10 2026, 23:41 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, User-nawan, nawan.my.id
nawan moved T67: Memperbaharui tahun hak cipta di footer from Backlog to Done on the Sprints (30 Jan - 19 Feb 2026) board.
Feb 10 2026, 23:11 · User-nawan, Sprints (30 Jan - 19 Feb 2026), Infra, Hostbrr, nawan.my.id
nawan closed T67: Memperbaharui tahun hak cipta di footer as Resolved.

Mengganti tahun hak cipta dengan time.Now function. Lihat: https://gohugo.io/functions/time/now/.

Feb 10 2026, 23:10 · User-nawan, Sprints (30 Jan - 19 Feb 2026), Infra, Hostbrr, nawan.my.id
nawan added a subtask for T15: Readeck?: Unknown Object (Maniphest Task).
Feb 10 2026, 18:32 · Infra
nawan added a subtask for T48: Setup fail2ban: Unknown Object (Maniphest Task).
Feb 10 2026, 18:22 · narayana.nawan.my.id, User-nawan, Infra
nawan claimed T73: WKD: Access-Control-Allow-Origin header is not set to '*'.
Feb 10 2026, 18:17 · User-nawan, nawan.my.id, Infra
nawan created T73: WKD: Access-Control-Allow-Origin header is not set to '*'.
Feb 10 2026, 18:17 · User-nawan, nawan.my.id, Infra
nawan created T72: WKD: Content-Type header is not set to 'application/octet-stream'.
Feb 10 2026, 18:14 · Infra, nawan.my.id, User-nawan
nawan closed T70: Perbaharui sidik jari OMEMO di situs pribadi as Resolved.

Selesai dengan id 24366d1954210a7b292f6b74a3ddd693f0412b57. Diff: https://hq.nawan.my.id/P4.

Feb 10 2026, 17:58 · Hugo, Infra, nawan.my.id, User-nawan
nawan updated the task description for T70: Perbaharui sidik jari OMEMO di situs pribadi.
Feb 10 2026, 17:16 · Hugo, Infra, nawan.my.id, User-nawan
nawan moved T71: Hosting Miniflux from Unclassified to VPS on the Infra board.
Feb 10 2026, 16:56 · Infra, narayana.nawan.my.id
nawan created T71: Hosting Miniflux.
Feb 10 2026, 16:55 · Infra, narayana.nawan.my.id
nawan changed the point value for T3: Identifikasi perbandingan antara fitur-fitur di Redmine dan Phorge from 1 to 3.
Feb 10 2026, 14:23 · Sprints (30 Jan - 19 Feb 2026), User-nawan, Phabricator, Redmine-Migration, Infra
nawan closed T3: Identifikasi perbandingan antara fitur-fitur di Redmine dan Phorge, a subtask of T1: Migrasi dari Redmine ke Phorge, as Resolved.
Feb 10 2026, 14:23 · User-nawan, Redmine-Migration, Infra, Phabricator
nawan closed T3: Identifikasi perbandingan antara fitur-fitur di Redmine dan 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.

Feb 10 2026, 14:23 · Sprints (30 Jan - 19 Feb 2026), User-nawan, Phabricator, Redmine-Migration, Infra
nawan moved T70: Perbaharui sidik jari OMEMO di situs pribadi from Backlog to Chores on the nawan.my.id board.
Feb 10 2026, 00:46 · Hugo, Infra, User-nawan, nawan.my.id
nawan moved T70: Perbaharui sidik jari OMEMO di situs pribadi from Inbox to Personal Site on the User-nawan board.
Feb 10 2026, 00:46 · Hugo, Infra, User-nawan, nawan.my.id
nawan created T70: Perbaharui sidik jari OMEMO di situs pribadi.
Feb 10 2026, 00:45 · Hugo, Infra, User-nawan, nawan.my.id

Feb 9 2026

nawan updated the task description for T3: Identifikasi perbandingan antara fitur-fitur di Redmine dan Phorge.
Feb 9 2026, 19:11 · Sprints (30 Jan - 19 Feb 2026), User-nawan, Phabricator, Redmine-Migration, Infra

Feb 7 2026

nawan triaged T67: Memperbaharui tahun hak cipta di footer as Low priority.
Feb 7 2026, 21:55 · User-nawan, Sprints (30 Jan - 19 Feb 2026), Infra, Hostbrr, nawan.my.id
nawan moved T67: Memperbaharui tahun hak cipta di footer from Icebox to Backlog on the Sprints (30 Jan - 19 Feb 2026) board.
Feb 7 2026, 21:55 · User-nawan, Sprints (30 Jan - 19 Feb 2026), Infra, Hostbrr, nawan.my.id
nawan moved T67: Memperbaharui tahun hak cipta di footer from Inbox to Static website on the Hostbrr board.
Feb 7 2026, 21:54 · User-nawan, Sprints (30 Jan - 19 Feb 2026), Infra, Hostbrr, nawan.my.id
nawan created T67: Memperbaharui tahun hak cipta di footer.
Feb 7 2026, 21:54 · User-nawan, Sprints (30 Jan - 19 Feb 2026), Infra, Hostbrr, nawan.my.id