Skip to content
Open
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
21 changes: 19 additions & 2 deletions src/pages/cy/events.astro
Original file line number Diff line number Diff line change
@@ -1,7 +1,24 @@
---
import BaseLayout from '@layouts/BaseLayout.astro';
const pageTitle = 'Events'
const pageTitle = 'Digwyddiadau';
---

<BaseLayout pageTitle={pageTitle}>
<BaseLayout
pageTitle={pageTitle}
mainClass="events-main"
>
<h1>Digwyddiadau</h1>
<section class="upcoming-events">
<h2>Digwyddiadau’r Dyfodol</h2>

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'Digwyddiadau i ddod' is more natural.

<p>Galw Cymunedol - y Dydd Iau cyntaf bob mis</p>
</section>
<div class="calendar-embed">
<iframe
src="https://calendar.google.com/calendar/embed?height=600&wkst=1&ctz=Europe%2FLondon&showPrint=0&showTitle=0&showTabs=0&showCalendars=0&src=dW5pdmVyc2Fsdmlld2VyYXBwQGdtYWlsLmNvbQ&color=%239e69af&hl=cy"
></iframe>
</div>
<section class="past-events">
<h2>Digwyddiadau Diwethaf</h2>

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'Digwyddiadau Blaenorol' sound more natural here.

<p><a href="https://www.youtube.com/watch?v=HxFX4YF3xM4">UVCON 2025</a></p>
</section>
</BaseLayout>