Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions layouts/cfp/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@
</span>
{{ end }}
<h1 class="text-4xl sm:text-5xl font-bold text-text-heading mb-6 font-brand">
PyCon Ireland 2026 Call for Proposals
{{ .Site.Title }} Call for Proposals
</h1>
<p class="text-xl text-text-secondary max-w-2xl mx-auto mb-8">
PyCon Ireland is looking for speakers. Share your Python knowledge, inspire the community, and take the stage at <strong class="text-text-primary">Trinity College Dublin</strong> on <strong class="text-text-primary">17 October 2026</strong>.
PyCon Ireland is looking for speakers. Share your Python knowledge, inspire the community, and take the stage at <strong class="text-text-primary">{{ .Site.Params.venue }}</strong> on <strong class="text-text-primary">{{ .Site.Params.dateHuman }}</strong>.
</p>

{{/* CFP dates */}}
Expand Down Expand Up @@ -335,7 +335,7 @@ <h3 class="text-lg font-bold text-text-heading mb-3">Financial aid available</h3
{{ if eq .Site.Params.cfpStatus "open" }}
<h2 class="text-2xl font-bold text-text-heading mb-4">Ready to Submit?</h2>
<p class="text-text-secondary mb-8 leading-relaxed">
We look forward to your submissions and can't wait to see the incredible talks you'll bring to PyCon Ireland 2026!
We look forward to your submissions and can't wait to see the incredible talks you'll bring to {{ .Site.Title }}!
</p>
<a href="{{ .Site.Params.cfpUrl }}" target="_blank" rel="noopener"
class="inline-flex items-center gap-2 bg-py-yellow hover:bg-py-yellow-light text-bg-primary font-bold px-8 py-4 rounded-xl text-lg transition-colors">
Expand Down Expand Up @@ -379,23 +379,23 @@ <h2 class="text-2xl font-bold text-text-heading mb-4">Stay in the Loop</h2>
"mainEntity": [
{
"@type": "Question",
"name": "Who should submit a talk to PyCon Ireland 2026?",
"name": "Who should submit a talk to {{ .Site.Title }}?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Anyone with Python experience is welcome to submit — from first-time presenters to conference veterans. Topics include Python, data science, AI engineering, scientific computing, and real-world Python use cases."
}
},
{
"@type": "Question",
"name": "Do speakers need to buy a ticket for PyCon Ireland 2026?",
"name": "Do speakers need to buy a ticket for {{ .Site.Title }}?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes, all accepted speakers are required to purchase a conference ticket. Financial aid is available on request for those who need it."
}
},
{
"@type": "Question",
"name": "When does the PyCon Ireland 2026 Call for Proposals close?",
"name": "When does the {{ .Site.Title }} Call for Proposals close?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The Call for Proposals closes on 31 July 2026. Submissions are reviewed by the programme committee and applicants are notified of the outcome."
Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/head.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ if .IsHome }}PyCon Ireland 2026 — Python Conference · Dublin, 17 October{{ else }}{{ .Title }} | {{ .Site.Title }}{{ end }}</title>
<title>{{ if .IsHome }}{{ .Site.Title }} — Python Conference · Dublin, {{ dateFormat "2 January" (time .Site.Params.eventStartDate) }}{{ else }}{{ .Title }} | {{ .Site.Title }}{{ end }}</title>
<meta name="description" content="{{ with .Description }}{{ . }}{{ else }}{{ .Site.Params.description }}{{ end }}">
<meta name="robots" content="index, follow">
<meta name="google-site-verification" content="QPz8yzH2pOdYQFiK3Ndfd2VqhtQDzvkDs1YSZHntgao">
Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/hero.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

<div class="relative z-10 max-w-4xl mx-auto px-4 text-center">
<h1 class="font-brand text-5xl sm:text-6xl md:text-7xl font-extrabold leading-tight mb-4"
aria-label="PyCon Ireland 2026 — Ireland's Python Conference"
aria-label="{{ .Site.Title }} — Ireland's Python Conference"
style="text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 0 40px rgba(0,0,0,0.6);">
<span style="color:#169B62">PyCon</span>
<span class="text-white">Ireland</span>
Expand Down
6 changes: 3 additions & 3 deletions layouts/partials/key-questions.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<section class="py-12 bg-bg-primary">
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-2xl font-bold text-text-heading mb-3">When and where is PyCon Ireland 2026?</h2>
<h2 class="text-2xl font-bold text-text-heading mb-3">When and where is {{ .Site.Title }}?</h2>
<p class="text-text-secondary mb-8 max-w-2xl">
PyCon Ireland 2026 takes place on <strong class="text-text-primary">{{ .Site.Params.dateHuman }}</strong>
{{ .Site.Title }} takes place on <strong class="text-text-primary">{{ .Site.Params.dateHuman }}</strong>
at <strong class="text-text-primary">{{ .Site.Params.venue }}</strong>, College Green, Dublin 2, Ireland.
It is a single-day, multi-track conference organised by Python Ireland, a not-for-profit community organisation.
</p>
{{ if eq .Site.Params.cfpStatus "open" }}
<h2 class="text-2xl font-bold text-text-heading mb-3">How do I submit a talk to PyCon Ireland 2026?</h2>
<h2 class="text-2xl font-bold text-text-heading mb-3">How do I submit a talk to {{ .Site.Title }}?</h2>
<p class="text-text-secondary mb-8 max-w-2xl">
The Call for Proposals is open until <strong class="text-text-primary">{{ dateFormat "2 January 2006" .Site.Params.cfpCloses }}</strong>.
All experience levels are welcome, from first-time presenters to conference veterans.
Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/tickets.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="text-center mb-16">
<h2 class="text-3xl sm:text-4xl font-bold text-text-heading mb-4">Tickets</h2>
<p class="text-text-secondary max-w-2xl mx-auto text-lg">
Secure your spot at PyCon Ireland 2026. Early bird pricing available for a limited time.
Secure your spot at {{ .Site.Title }}. Early bird pricing available for a limited time.
</p>
</div>

Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/venue-home.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ <h3 class="text-xl text-py-blue-light font-semibold mb-4">{{ .Site.Params.venue
<p class="text-text-secondary mb-6 leading-relaxed">
Trinity College Dublin is one of Ireland's most iconic universities, located in
the heart of Dublin city centre. Its historic campus provides a stunning setting
for PyCon Ireland 2026.
for {{ .Site.Title }}.
</p>
<p class="text-text-secondary mb-8">
<svg class="w-5 h-5 inline-block text-py-yellow mr-2" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 11a3 3 0 11-6 0 3 3 0 016 0z"/></svg>
Expand Down
6 changes: 3 additions & 3 deletions layouts/venue/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<div class="absolute bottom-1/4 right-1/4 w-72 h-72 bg-py-yellow/5 rounded-full blur-3xl"></div>
</div>
<div class="relative z-10 max-w-4xl mx-auto px-4 text-center">
<p class="text-py-yellow font-semibold text-sm uppercase tracking-widest mb-4">PyCon Ireland 2026</p>
<p class="text-py-yellow font-semibold text-sm uppercase tracking-widest mb-4">{{ .Site.Title }}</p>
<h1 class="font-brand text-5xl sm:text-6xl md:text-7xl font-extrabold leading-tight mb-6" style="text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 0 40px rgba(0,0,0,0.6);">
{{ .Site.Params.venue }}
</h1>
Expand Down Expand Up @@ -53,7 +53,7 @@ <h2 class="text-3xl font-bold text-text-heading mb-2">About the Venue</h2>
Trinity College Dublin is Ireland's oldest and most prestigious university, founded in 1592 and located in the heart of Dublin city centre.
</p>
<p>
With its stunning historic campus and excellent facilities, TCD provides the perfect environment for PyCon Ireland 2026.
With its stunning historic campus and excellent facilities, TCD provides the perfect environment for {{ .Site.Title }}.
</p>
</div>

Expand Down Expand Up @@ -126,7 +126,7 @@ <h3 class="text-lg font-semibold text-text-heading mb-4">Nearby Accommodation</h
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-text-heading mb-4">Accessibility</h2>
<p class="text-text-secondary text-lg max-w-2xl mx-auto">
We are committed to making PyCon Ireland 2026 accessible to everyone.
We are committed to making {{ .Site.Title }} accessible to everyone.
If you have specific requirements, please <a href="mailto:{{ .Site.Params.email }}" class="text-py-yellow hover:underline">contact us</a> in advance.
</p>
</div>
Expand Down
Loading