Friends of Castle Park LogoCastle Park Logo

Events, News

Final Day of Community Archaeological Digs

Click image for details

What a grand two weeks it has been, from scorching 30+ degree heat to pouring it down with rain! The group of volunteers have learnt many new skills and begun the journey of unearthing the history of Castle Park. It has been a pleasure for us working  in partnership with L~P: Archaeology, who have not only provided vast amounts of knowledge and skills, but also provided much laughter!

We will be working with them for the next three years to deliver the archaeological and heritage aspect of the National Lottery Heritage Fund project. There were many interesting discoveries and finds over the two weeks, these will be reported on and documented shortly.

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