From 2cdbe2084ce28ca00bec58c25fcb147e94648825 Mon Sep 17 00:00:00 2001 From: N-Pex Date: Mon, 2 Mar 2026 10:03:26 +0100 Subject: [PATCH 1/7] Add Zammad script to site --- layouts/_partials/head/scripts.html | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 layouts/_partials/head/scripts.html diff --git a/layouts/_partials/head/scripts.html b/layouts/_partials/head/scripts.html new file mode 100644 index 0000000..23457ff --- /dev/null +++ b/layouts/_partials/head/scripts.html @@ -0,0 +1,17 @@ +{{ if eq .Name "Contact" }} + + + +{{ end }} From e6fc7f489300eb10c77e8d8c01fad02e705975b8 Mon Sep 17 00:00:00 2001 From: irl Date: Wed, 11 Mar 2026 14:32:22 +0000 Subject: [PATCH 2/7] feat: alicja is now AICB --- content/team/alicja-mlek.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/team/alicja-mlek.md b/content/team/alicja-mlek.md index ab5fbce..c9a0203 100644 --- a/content/team/alicja-mlek.md +++ b/content/team/alicja-mlek.md @@ -4,7 +4,7 @@ name = 'Alicja Mlek' order = 50 [params] pronoun = '(she/her)' - education = '' - role = 'Trainee Bookkeeper' + education = 'AICB' + role = 'Junior Bookkeeper' photo = 'team/images/alicja.webp' +++ From 5bcc5f013aa065565531acbb10814266f6c22bf2 Mon Sep 17 00:00:00 2001 From: irl Date: Sun, 10 May 2026 16:20:08 +0100 Subject: [PATCH 3/7] update opening hours and contact methods --- content/contact/_index.md | 6 ++---- hugo.toml | 12 +++--------- 2 files changed, 5 insertions(+), 13 deletions(-) diff --git a/content/contact/_index.md b/content/contact/_index.md index 03ff94b..5bee8e1 100644 --- a/content/contact/_index.md +++ b/content/contact/_index.md @@ -9,8 +9,8 @@ Get in touch with us #### Business hours -* Mon, Wed, Fri: 12pm to 5pm -* Tue, Thu, Sat, Sun: Closed +* Tue—Fri: 12pm to 5pm +* Sat—Mon: Closed * UK, Scotland, and Aberdeen Holidays: Closed #### Address @@ -19,5 +19,3 @@ Get in touch with us #### Map {{< address-map >}} -#### Get in touch -{{< feedback-form fallback="Our contact form requires javascript. Otherwise, you can send a mail to contact@sr2.uk." >}} \ No newline at end of file diff --git a/hugo.toml b/hugo.toml index 514fed9..01191e1 100644 --- a/hugo.toml +++ b/hugo.toml @@ -37,21 +37,15 @@ defaultContentLanguage = 'en' [params.header] buttons = [ {type = 'text', name = 'Contact', url = '/contact'}, - {type = 'button', name = '+44 (0)1224 900 280', icon = 'phone', url = 'tel:+441224900280'} + {type = 'button', name = '+44 (0)1224 469 800', icon = 'phone', url = 'tel:+441224469800'} ] [params.contact] methods = [ - {name = 'telephone', display = '+44 (0)1224 900 280', link = 'tel:+441224900280'}, - {name = 'email', display = 'office@sr2pro.uk', link = 'mailto:office@sr2pro.uk'}, - {name = 'fax', display = '+44 (0)1224 900 284', link = 'tel:+441224900284'} + {name = 'telephone', display = '+44 (0)1224 469 800', link = 'tel:+441224469800'}, + {name = 'email', display = 'professional.services@sr2.uk', link = 'mailto:professional.services@sr2.uk'} ] -[params.feedback] - agreementMessage = 'I agree to the terms and conditions and for my data to be handled according to the privacy policy' - messageSubmit = 'Send' - messageThankYou = "Thank you for your inquiry (#%s)! We'll contact you as soon as possible." - [params] address = '''499 Union Street 2nd Floor From 76f6d1d1f77f97de4ae01f6f2653a77bfb735b30 Mon Sep 17 00:00:00 2001 From: irl Date: Sun, 10 May 2026 16:23:13 +0100 Subject: [PATCH 4/7] ci: update hugo --- .forgejo/workflows/publish.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.forgejo/workflows/publish.yaml b/.forgejo/workflows/publish.yaml index e29166e..fdffae2 100644 --- a/.forgejo/workflows/publish.yaml +++ b/.forgejo/workflows/publish.yaml @@ -12,14 +12,12 @@ jobs: image: ghcr.io/catthehacker/ubuntu:runner-latest steps: - uses: actions/checkout@v4 - with: - submodules: true - uses: actions/setup-node@v4 - run: npm install -g bnycdn - name: Setup Hugo uses: https://guardianproject.dev/actions/actions-hugo@v3 with: - hugo-version: '0.154.3' + hugo-version: '0.161.1' extended: true - run: wget https://github.com/sass/dart-sass/releases/download/1.97.3/dart-sass-1.97.3-linux-x64.tar.gz -O dart-sass.tar.gz - run: tar zxf dart-sass.tar.gz From 5089d5f40fa5995ae8300afdc7f00bdb9f4bdfb8 Mon Sep 17 00:00:00 2001 From: irl Date: Sun, 10 May 2026 16:29:02 +0100 Subject: [PATCH 5/7] ci: try to fix cache issue --- .forgejo/workflows/publish.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.forgejo/workflows/publish.yaml b/.forgejo/workflows/publish.yaml index fdffae2..951146c 100644 --- a/.forgejo/workflows/publish.yaml +++ b/.forgejo/workflows/publish.yaml @@ -13,6 +13,9 @@ jobs: steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 + with: + node-version: 24 + package-manager-cache: false - run: npm install -g bnycdn - name: Setup Hugo uses: https://guardianproject.dev/actions/actions-hugo@v3 From 4c2256a0a1635fce08a0571bae34d3bc3a1d8d14 Mon Sep 17 00:00:00 2001 From: irl Date: Sun, 10 May 2026 16:29:50 +0100 Subject: [PATCH 6/7] Revert "ci: update hugo" This reverts commit 76f6d1d1f77f97de4ae01f6f2653a77bfb735b30. --- .forgejo/workflows/publish.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/publish.yaml b/.forgejo/workflows/publish.yaml index 951146c..4fdd750 100644 --- a/.forgejo/workflows/publish.yaml +++ b/.forgejo/workflows/publish.yaml @@ -12,6 +12,8 @@ jobs: image: ghcr.io/catthehacker/ubuntu:runner-latest steps: - uses: actions/checkout@v4 + with: + submodules: true - uses: actions/setup-node@v4 with: node-version: 24 @@ -20,7 +22,7 @@ jobs: - name: Setup Hugo uses: https://guardianproject.dev/actions/actions-hugo@v3 with: - hugo-version: '0.161.1' + hugo-version: '0.154.3' extended: true - run: wget https://github.com/sass/dart-sass/releases/download/1.97.3/dart-sass-1.97.3-linux-x64.tar.gz -O dart-sass.tar.gz - run: tar zxf dart-sass.tar.gz From fd3d9f721a2e4b0b9f7f702c7d1d898de44003ba Mon Sep 17 00:00:00 2001 From: renovate Date: Wed, 20 May 2026 09:27:57 +0000 Subject: [PATCH 7/7] Add renovate.json --- renovate.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..c433e3a --- /dev/null +++ b/renovate.json @@ -0,0 +1,8 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended" + ], + "minimumReleaseAge": "14 days", + "gitAuthor": "Renovate" +}