Friends of Castle Park LogoCastle Park Logo

Events, News

D-Day 80th Anniversary

28th June 2024 | 6.00pm

 - 9.30pm

D-Day 80th Anniversary Event 6th June 2024

Join us to commemorate the 80th anniversary of D-Day

6.30pm Bell Ringing for Peace from St Michael’s Church 

6.45pm Live music and songs from Bishop’s Stortford Band and vintage trio The Rockabellas 

8.40pm Local schools to perform poetry 

9.00pm The Royal British Legion to lead Remembrance including two minutes silence 

9.15pm Bishop’s Stortford joins the nation for the lighting of a beacon and reading of the International Tribute.

Wooden commemoration crosses and D-Day lapel pins available for a donation to the Poppy Appeal.

Fish and chips · Ice creams · Coffee · Bar from PEACH.

Here are up to 12 images taken at random from the images we have for this event.
Please feel free to send us more to add.

<?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; ?>