Friends of Castle Park LogoCastle Park Logo

Events, Health & Wellbeing

Wellbeing Triathlon

28th May 2023 | 10.00am

Wellbeing Triathlon at Castle Park


The Friends of Castle Park are excited to welcome back the Wellbeing Triathlon on Sworder’s Field.   

We’ll be starting off with a 5k run or 2.5k walk, followed by a yoga session, and finishing up with a relaxing meditation. Tickets cost £12 with £2 from each ticket being donated to Herts Mind Network.  

The Wellbeing Triathlon will be coached by Lucy Robinson from Trikonasana Training. We also welcome supporting coaches Laurence Foote from Footesteps and Alex Burling from All Being Well..

Huge thank you to our partners: Active East Herts and Herts Mind Network; our sponsors: Everyone Active; and our funders: National Lottery Heritage Fund, National Lottery Community Fund, East Herts District Council, and Bishop’s Stortford Town Council.

<?php
$gallery = get_field('event_gallery', get_the_ID());
if ($gallery) : ?>
    <div class="event-gallery-grid"> <!-- Grid container -->
        <?php
        // Get 12 random images (use array_rand for random selection)
        $random_images = array_rand($gallery, 12); 
        foreach ((array)$random_images as $image) :
            $img_url = $gallery[$image]['url'];
            $img_alt = $gallery[$image]['alt'];
        ?>
            <div class="event-gallery-image">
                <!-- Anchor tag that links to the full image -->
                <a href="<?php echo $img_url; ?>" target="_blank">
                    <img src="<?php echo $img_url; ?>" alt="A photo of <?php echo $img_alt; ?>" />
                </a>
            </div>
        <?php endforeach; ?>
    </div> <!-- End grid container -->
<?php endif; ?>