Compare commits

..

7 commits
main ... main

Author SHA1 Message Date
fd3d9f721a Add renovate.json 2026-05-20 09:27:57 +00:00
irl
4c2256a0a1 Revert "ci: update hugo"
This reverts commit 76f6d1d1f7.
2026-05-10 16:29:50 +01:00
irl
5089d5f40f ci: try to fix cache issue 2026-05-10 16:29:02 +01:00
irl
76f6d1d1f7 ci: update hugo 2026-05-10 16:23:13 +01:00
irl
5bcc5f013a update opening hours and contact methods 2026-05-10 16:20:08 +01:00
irl
e6fc7f4893 feat: alicja is now AICB 2026-03-11 14:32:39 +00:00
N-Pex
2cdbe2084c Add Zammad script to site 2026-03-02 10:03:26 +01:00
6 changed files with 35 additions and 15 deletions

View file

@ -15,6 +15,9 @@ jobs:
with:
submodules: true
- 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

View file

@ -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." >}}

View file

@ -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'
+++

View file

@ -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 <a target="_blank" href="https://www.sr2.uk/terms/" class="">terms and conditions</a> and for my data to be handled according to the <a target="_blank" href="https://www.sr2.uk/privacy/">privacy policy</a>'
messageSubmit = 'Send'
messageThankYou = "Thank you for your inquiry (#%s)! We'll contact you as soon as possible."
[params]
address = '''499 Union Street
2nd Floor

View file

@ -0,0 +1,17 @@
{{ if eq .Name "Contact" }}
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script
id="zammad_form_script"
src="https://help.sr2.uk/assets/form/form.js"></script>
<script>
$(function () {
$("#zammad-feedback-form").ZammadForm({
agreementMessage: {{ site.Params.feedback.agreementMessage }},
messageSubmit:{{ site.Params.feedback.messageSubmit }},
messageThankYou:{{ site.Params.feedback.messageThankYou }},
showTitle: false,
noCSS: true,
});
});
</script>
{{ end }}

8
renovate.json Normal file
View file

@ -0,0 +1,8 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"minimumReleaseAge": "14 days",
"gitAuthor": "Renovate<noreply@sr2.uk>"
}