From 5d513ad3aa8b39661b1fa2c8eb5716e5a690dee4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Wirtel?= Date: Thu, 4 Jun 2026 21:30:49 +0200 Subject: [PATCH 1/5] feat(financial-aid): add financial aid page with coming soon status --- content/financial-aid/_index.md | 61 +++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 content/financial-aid/_index.md diff --git a/content/financial-aid/_index.md b/content/financial-aid/_index.md new file mode 100644 index 0000000..487e9e8 --- /dev/null +++ b/content/financial-aid/_index.md @@ -0,0 +1,61 @@ +--- +title: "Financial Aid" +description: "Financial assistance is available for eligible attendees of PyCon Ireland 2026." +layout: "single" +--- + +
+ Applications opening soon +
+ +Python Ireland offers financial assistance to help members of the community attend PyCon Ireland 2026 who would otherwise be unable to do so. + +## What the Aid Covers + +Financial assistance may include: + +- A complimentary conference ticket +- Full or partial reimbursement of travel expenses +- Full or partial reimbursement of accommodation costs + +The maximum award is **€350 per person**. + +## Eligibility and Priorities + +Due to economic, budgetary, and environmental considerations, applications are evaluated in the following order of priority: + +1. Residents of Ireland +2. Residents of the United Kingdom +3. Residents of Europe + +## How to Apply + +The application form will be available shortly. The application deadline is to be announced. + +## Decision Process + +Applications are reviewed by a committee chaired by at least one director of Python Ireland. Awards may be fully approved, partially approved, or denied. Decisions are not motivated and cannot be appealed. + +## Attribution and Acceptance + +Successful applicants are notified by email and have **one week** to accept or decline the award. If no response is received within that period, the aid is cancelled and redistributed to the next eligible applicant. The original recipient will be notified of the cancellation. + +## Reimbursement Conditions + +Applicants approved for travel or accommodation reimbursement must: + +- Attend the conference and register at the desk +- Submit receipts for approved expenses +- Provide their full legal name and address, matching their banking information +- Supply complete IBAN details +- Email all documentation to Python Ireland within **30 days** of the event + +Incomplete submissions will not receive follow-up reminders. + +## No-Show Policy + +Recipients who are unable to attend must notify the organisers **at least 7 days before** the event, or provide documented justification **within 30 days** after the event. Failure to comply results in ineligibility for financial aid at future Python Ireland events, unless circumstances demonstrate absolute necessity. + +--- + +For questions, contact [contact@python.ie](mailto:contact@python.ie). From f12b7d492e9826901d74105694a2879203dc7047 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Wirtel?= Date: Thu, 4 Jun 2026 21:32:46 +0200 Subject: [PATCH 2/5] fix(financial-aid): improve meta description for SEO --- content/financial-aid/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/financial-aid/_index.md b/content/financial-aid/_index.md index 487e9e8..ee9a59b 100644 --- a/content/financial-aid/_index.md +++ b/content/financial-aid/_index.md @@ -1,6 +1,6 @@ --- title: "Financial Aid" -description: "Financial assistance is available for eligible attendees of PyCon Ireland 2026." +description: "Python Ireland offers grants covering tickets, travel, and accommodation for community members attending PyCon Ireland 2026 who need financial support." layout: "single" --- From a6c577246f3f5d544d7a485055c948f3fbb0d772 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Wirtel?= Date: Thu, 4 Jun 2026 21:33:20 +0200 Subject: [PATCH 3/5] feat(financial-aid): add Financial Aid link in footer Community column --- layouts/partials/footer.html | 1 + 1 file changed, 1 insertion(+) diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index ce3144d..4ab45ca 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -31,6 +31,7 @@

Community

  • Blog
  • +
  • Financial Aid
  • Code of Conduct
  • Terms & Conditions
  • Photo Credits
  • From c08f10aa668fe8e9acaafce7ded081eeae12973c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Wirtel?= Date: Thu, 4 Jun 2026 21:34:31 +0200 Subject: [PATCH 4/5] feat(financial-aid): add financial aid link in tickets section --- layouts/partials/tickets.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/layouts/partials/tickets.html b/layouts/partials/tickets.html index 6468a68..a2f5980 100644 --- a/layouts/partials/tickets.html +++ b/layouts/partials/tickets.html @@ -37,5 +37,11 @@

    {{ .name }}

    {{ end }} + +

    + Need help covering costs? + Financial aid is available + for eligible attendees. +

    From d2426fd1cf0e7cae2e571b0421c03baddb26ff97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Wirtel?= Date: Thu, 4 Jun 2026 21:35:54 +0200 Subject: [PATCH 5/5] fix(markup): enable Goldmark unsafe HTML rendering for inline HTML in Markdown --- hugo.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hugo.toml b/hugo.toml index a85a2ec..182e8f6 100644 --- a/hugo.toml +++ b/hugo.toml @@ -3,6 +3,11 @@ locale = "en-IE" title = "PyCon Ireland 2026" enableGitInfo = true +[markup] + [markup.goldmark] + [markup.goldmark.renderer] + unsafe = true + [taxonomies] [build]