{"id":16646,"date":"2026-04-27T15:46:28","date_gmt":"2026-04-27T14:46:28","guid":{"rendered":"https:\/\/www.visitcaerphilly.com\/?post_type=events&#038;p=16646"},"modified":"2026-04-27T15:46:30","modified_gmt":"2026-04-27T14:46:30","slug":"pianoforte","status":"publish","type":"events","link":"https:\/\/www.visitcaerphilly.com\/en\/events\/pianoforte\/","title":{"rendered":"Pianoforte"},"content":{"rendered":"\n\n\t<div class=\"wrapper\">\n\t\t\t\t\t<div class=\" single-featured-image\">\t\n\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2026\/04\/Pianoforte-Blackwood-Miners-Institute.jpg\" alt=\"\" \/>\n\t\t\t\t<div class=\"video-tagline\">\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t<\/div>\n\n\n\n\n\t<section id=\"\" class=\"block text-block\">\n\t\t<div class=\"wrapper\">\n\t\t\t<h3><a href=\"https:\/\/www.blackwoodminersinstitute.com\/en\/whats-on\/pianoforte\/\">Book your tickets here!<\/a><\/h3>\n<p>Set against the backdrop of the 1839 Newport Rising, Pianoforte brings to life the story of Mary Frost, a woman at the very heart of one of the most significant and defining uprisings in British democratic history.<\/p>\n<p>While her husband John Frost led thousands of working people demanding the right to vote and fair representation, Mary, like that of many women of the time, was forced into the shadows. Yet, as Pianoforte vividly reveals, Mary\u2019s courage, compassion, and quiet determination were central to the spirit of the Chartist movement. Though history has often focused on the male leaders, women like Mary Frost were the emotional and practical backbone of the movement, organising, supporting, and sustaining the cause in countless unseen ways.<\/p>\n<p>\u201cMary Frost\u2019s story is one of resilience, justice, and love,\u201d says Adele Cordner, playwright. \u201cShe lived through enormous political upheaval and personal sacrifice, and yet history has all but erased her name. This play is our way of restoring her voice and honouring the many women who fuelled change from behind closed doors.<\/p>\n<p>\u201cAmongst other things, Mary had to sell her piano to raise money for John\u2019s defence fund. This inspired us to call the play Pianoforte as a tribute to her quiet strength.\u201d<br \/>\nDirector Clare Drewett describes the play as \u201ccrackling with wit, tension and authenticity.<\/p>\n<p>\u201cPianoforte captures Mary\u2019s joys and heartbreaks with emotional depth and historical precision,\u201d says Clare. \u201cThe play charts her journey from devoted wife and mother to a quietly radical woman whose belief in fairness and equality mirrored the very ideals of Chartism, a struggle for democracy that remains profoundly relevant today.\u201d<\/p>\n<p>Original music, composed by Helen Woods, underscores moments of hope, grief, and triumph, weaving music and drama together into a deeply moving theatrical experience.<\/p>\n<p>Her Story Theatre Company\u2019s Pianoforte not only celebrates Newport\u2019s proud radical heritage but also reignites conversation about the ongoing struggle for equality and justice.<\/p>\n\t\t<\/div>\n\t<\/section>\n\t\n\n<script src=\"https:\/\/maps.googleapis.com\/maps\/api\/js?key=AIzaSyCNYY6aenor9lbT84cYrEb5gzYo8p_fKiU\"><\/script>\n<script src=\"https:\/\/unpkg.com\/@googlemaps\/markerclusterer\/dist\/index.min.js\"><\/script>\n<script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/OverlappingMarkerSpiderfier\/1.0.3\/oms.min.js\"><\/script>\n\n<script type=\"text\/javascript\">\n(function($) {\n\n    \/\/ Init all maps\n    $(document).ready(function() {\n\t\t$('.acf-map').each(function(i, el) {\n\t\t\tsetTimeout(() => {\n\t\t\t\tinitMap($(el));\n\t\t\t}, i * 200); \/\/ stagger loading slightly per map\n\t\t});\n\t});\n\n    \/\/ Initialize individual map\n    function initMap($el) {\n        var $markers = $el.find('.marker');\n        var markers = [];\n\n        var mapArgs = {\n            zoom: $el.data('zoom') || 16,\n            mapTypeId: google.maps.MapTypeId.ROADMAP,\n            center: { lat: 0, lng: 0 }\n        };\n\n        var map = new google.maps.Map($el[0], mapArgs);\n\n        $markers.each(function() {\n            var marker = initMarker($(this), map);\n            markers.push(marker);\n        });\n\n        centerMap(map, markers);\n\n        \/\/ Spiderfier\n        var oms = new OverlappingMarkerSpiderfier(map, {\n            markersWontMove: true,\n            markersWontHide: true,\n            keepSpiderfied: true\n        });\n\n        markers.forEach(function(marker) {\n            oms.addMarker(marker);\n        });\n\n        \/\/ MarkerClusterer\n        new MarkerClusterer(map, markers, {\n            imagePath: 'https:\/\/developers.google.com\/maps\/documentation\/javascript\/examples\/markerclusterer\/m'\n        });\n\t\t\n\t\tgoogle.maps.event.trigger(map, 'resize');\n    }\n\n    \/\/ Create individual marker\n    function initMarker($marker, map) {\n        var lat = parseFloat($marker.data('lat'));\n        var lng = parseFloat($marker.data('lng'));\n        var latLng = { lat, lng };\n\n        var image = \"https:\/\/www.visitcaerphilly.com\/wp-content\/themes\/visitcaerphilly\/assets\/images\/map-marker-pin.png\";\n\n        var marker = new google.maps.Marker({\n            position: latLng,\n            map: map,\n            icon: image\n        });\n\n        if ($marker.html()) {\n            var infowindow = new google.maps.InfoWindow({\n                content: $marker.html()\n            });\n\n            marker.addListener('click', function() {\n                infowindow.open(map, marker);\n            });\n\n            marker.addListener('spider_click', function() {\n                infowindow.open(map, marker);\n            });\n        }\n\n        return marker;\n    }\n\n    \/\/ Center map based on markers\n    function centerMap(map, markers) {\n        var bounds = new google.maps.LatLngBounds();\n\n        markers.forEach(function(marker) {\n            bounds.extend(marker.getPosition());\n        });\n\n        if (markers.length === 1) {\n            map.setCenter(bounds.getCenter());\n            map.setZoom(map.zoom || 16);\n        } else {\n            map.fitBounds(bounds);\n        }\n    }\n\n})(jQuery);\n<\/script>\n\n\t<div class=wrapper>\n\t\t<section id=\"\" class=\"block events-block \" style=\"background-color: ;\">\n\t\t\t<div class=\"block-title\">\n\t\t\t\t<div class=\"block-title-items\">\n\t\t\t\t\t<i class=\"fa-solid fa-calendar-star\" aria-hidden=\"true\"><\/i><h2>Blackwood Miners&#039; Institute Events<\/h2>\n\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"view-toggle\">\n\t\t\t\t\t<button id=\"listViewBtn\"><i class=\"fa-solid fa-list-ul\"><\/i>List view<\/button>\n\t\t\t\t\t<button id=\"gridViewBtn\"><i class=\"fa-solid fa-grid\"><\/i>Thumbnail view<\/button>\n\t\t\t\t\t<button id=\"mapViewBtn\"><i class=\"fa-solid fa-map-location-dot\"><\/i>Map view<\/button>\n\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t\t<!-- List View -->\n\t\t\t<div id=\"listView\" class=\"view-mode\">\n\t\t\t\t<div class=\"featured-content-wrap\">\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card-list\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<div class=\"featured-content-image-list\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2025\/10\/Pit-Party.jpg\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content-list\">\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/pit-party\/\"><h3>Pit Party<\/h3><\/a>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<div class=\"event-date-list\">\n\t\t\t\t\t\t\t\t\t24 July 2026\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card-list\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<div class=\"featured-content-image-list\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2026\/07\/Pleth-Blackwood-Miners-Institute.png\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content-list\">\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/pleth\/\"><h3>Pleth<\/h3><\/a>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<div class=\"event-date-list\">\n\t\t\t\t\t\t\t\t\t10 September 2026\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card-list\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<div class=\"featured-content-image-list\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2026\/06\/The-History-of-Soul-Blackwood-Miners-Institute.jpg\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content-list\">\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/the-history-of-soul\/\"><h3>The History of Soul<\/h3><\/a>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<div class=\"event-date-list\">\n\t\t\t\t\t\t\t\t\t11 September 2026\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card-list\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<div class=\"featured-content-image-list\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2026\/06\/The-Rocket-Man-A-Tribute-to-Elton-John-Blackwood-Miners-Institute.png\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content-list\">\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/the-rocket-man-a-tribute-to-elton-john\/\"><h3>The Rocket Man \u2013 A Tribute to Elton John<\/h3><\/a>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<div class=\"event-date-list\">\n\t\t\t\t\t\t\t\t\t12 September 2026\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card-list\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<div class=\"featured-content-image-list\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2026\/06\/Pride-and-Prejudish-Blackwood-Miners-Institute.png\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content-list\">\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/pride-and-prejudish\/\"><h3>Pride and Prejud(ish)<\/h3><\/a>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<div class=\"event-date-list\">\n\t\t\t\t\t\t\t\t\t30 September &#8211; 2 October 2026\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card-list\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<div class=\"featured-content-image-list\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2025\/07\/503840094_1291023143024576_1129900751327141175_n.jpg\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content-list\">\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/thank-abba-for-the-music\/\"><h3>Thank ABBA for the Music<\/h3><\/a>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<div class=\"event-date-list\">\n\t\t\t\t\t\t\t\t\t24 October 2026\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street, NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card-list\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<div class=\"featured-content-image-list\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2025\/06\/498178170_1274236084703282_9221311571512543171_n.jpg\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content-list\">\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/the-take-that-experience\/\"><h3>The Take That Experience<\/h3><\/a>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<div class=\"event-date-list\">\n\t\t\t\t\t\t\t\t\t21 November 2026\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\n\t\t\t\n\t\t\t<!-- Grid View -->\n\t\t\t<div id=\"gridView\" class=\"view-mode\" style=\"display: none;\">\n\t\t\t  <div class=\"featured-content-wrap\">\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card\">\n\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/pit-party\/\">\n\t\t\t\t\t\t\t<div class=\"featured-content-image\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2025\/10\/Pit-Party.jpg\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"post-feed-feature-overlay\"><\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content\">\n\n\t\t\t\t\t\t\t\t<h3>Pit Party<\/h3>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"event-date\">\n\t\t\t\t\t\t\t\t24 July 2026\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card\">\n\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/pleth\/\">\n\t\t\t\t\t\t\t<div class=\"featured-content-image\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2026\/07\/Pleth-Blackwood-Miners-Institute.png\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"post-feed-feature-overlay\"><\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content\">\n\n\t\t\t\t\t\t\t\t<h3>Pleth<\/h3>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"event-date\">\n\t\t\t\t\t\t\t\t10 September 2026\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card\">\n\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/the-history-of-soul\/\">\n\t\t\t\t\t\t\t<div class=\"featured-content-image\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2026\/06\/The-History-of-Soul-Blackwood-Miners-Institute.jpg\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"post-feed-feature-overlay\"><\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content\">\n\n\t\t\t\t\t\t\t\t<h3>The History of Soul<\/h3>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"event-date\">\n\t\t\t\t\t\t\t\t11 September 2026\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card\">\n\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/the-rocket-man-a-tribute-to-elton-john\/\">\n\t\t\t\t\t\t\t<div class=\"featured-content-image\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2026\/06\/The-Rocket-Man-A-Tribute-to-Elton-John-Blackwood-Miners-Institute.png\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"post-feed-feature-overlay\"><\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content\">\n\n\t\t\t\t\t\t\t\t<h3>The Rocket Man \u2013 A Tribute to Elton John<\/h3>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"event-date\">\n\t\t\t\t\t\t\t\t12 September 2026\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card\">\n\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/pride-and-prejudish\/\">\n\t\t\t\t\t\t\t<div class=\"featured-content-image\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2026\/06\/Pride-and-Prejudish-Blackwood-Miners-Institute.png\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"post-feed-feature-overlay\"><\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content\">\n\n\t\t\t\t\t\t\t\t<h3>Pride and Prejud(ish)<\/h3>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"event-date\">\n\t\t\t\t\t\t\t\t30 September 2026 &#8211; 2 October 2026\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card\">\n\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/thank-abba-for-the-music\/\">\n\t\t\t\t\t\t\t<div class=\"featured-content-image\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2025\/07\/503840094_1291023143024576_1129900751327141175_n.jpg\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"post-feed-feature-overlay\"><\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content\">\n\n\t\t\t\t\t\t\t\t<h3>Thank ABBA for the Music<\/h3>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street, NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"event-date\">\n\t\t\t\t\t\t\t\t24 October 2026\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card\">\n\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/the-take-that-experience\/\">\n\t\t\t\t\t\t\t<div class=\"featured-content-image\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2025\/06\/498178170_1274236084703282_9221311571512543171_n.jpg\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"post-feed-feature-overlay\"><\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content\">\n\n\t\t\t\t\t\t\t\t<h3>The Take That Experience<\/h3>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"event-date\">\n\t\t\t\t\t\t\t\t21 November 2026\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\n\t\t\t\n\t\t\t<!-- Map View -->\n\t\t\t<div id=\"mapView\" class=\"view-mode\" style=\"display: none;\">\t\n\t\t\t\t<div class=\"container\">\n\t\t\t\t\t<div class=\"map-block-wrap\">\n\t\t\t\t\t\t<div class=\"acf-map\" data-zoom=\"16\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"marker\" data-lat=\"51.6694944166\" data-lng=\"-3.19564819336\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"map-content-wrap\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-title\">Pit Party<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-contacts\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-location-dot\"><\/i>&nbsp;&nbsp;Blackwood Miners&#8217; Institute, High Street NP12 1BB<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-phone\"><\/i>&nbsp;&nbsp;01495 227206<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-envelope\"><\/i>&nbsp;&nbsp;<a href=\"mailto:BM&#073;&#064;c&#097;&#101;&#114;p&#104;i&#108;&#108;&#121;&#046;&#103;&#111;v.&#117;k\">&#066;&#077;&#073;&#064;c&#097;&#101;&#114;&#112;&#104;&#105;l&#108;y&#046;&#103;&#111;v&#046;uk<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-laptop\"><\/i>&nbsp;&nbsp;<a href=\"https:\/\/www.blackwoodminersinstitute.com\/\" target=\"_blank\">Visit website<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/pit-party\/\">More about Pit Party ><\/a>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"marker\" data-lat=\"51.6694944166\" data-lng=\"-3.19563746452\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"map-content-wrap\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-title\">Pleth<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-contacts\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-location-dot\"><\/i>&nbsp;&nbsp;Blackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-phone\"><\/i>&nbsp;&nbsp;01495 227206<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-envelope\"><\/i>&nbsp;&nbsp;<a href=\"mailto:BMI&#064;caerphilly.&#103;o&#118;.&#117;&#107;\">BMI&#064;cae&#114;&#112;h&#105;l&#108;y.g&#111;&#118;.&#117;&#107;<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-laptop\"><\/i>&nbsp;&nbsp;<a href=\"https:\/\/www.blackwoodminersinstitute.com\/\" target=\"_blank\">Visit website<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/pleth\/\">More about Pleth ><\/a>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"marker\" data-lat=\"51.6694944166\" data-lng=\"-3.19564819336\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"map-content-wrap\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-title\">The History of Soul<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-contacts\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-location-dot\"><\/i>&nbsp;&nbsp;Blackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-phone\"><\/i>&nbsp;&nbsp;01495 227206<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-envelope\"><\/i>&nbsp;&nbsp;<a href=\"mailto:B&#077;&#073;&#064;ca&#101;&#114;&#112;&#104;i&#108;&#108;&#121;&#046;go&#118;&#046;uk\">BM&#073;&#064;c&#097;e&#114;&#112;&#104;i&#108;&#108;y.gov.uk<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-laptop\"><\/i>&nbsp;&nbsp;<a href=\"https:\/\/www.blackwoodminersinstitute.com\/\" target=\"_blank\">Visit website<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/the-history-of-soul\/\">More about The History of Soul ><\/a>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"marker\" data-lat=\"51.6694944166\" data-lng=\"-3.19564819336\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"map-content-wrap\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-title\">The Rocket Man \u2013 A Tribute to Elton John<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-contacts\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-location-dot\"><\/i>&nbsp;&nbsp;Blackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-phone\"><\/i>&nbsp;&nbsp;01495 227206<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-envelope\"><\/i>&nbsp;&nbsp;<a href=\"mailto:&#066;M&#073;&#064;cae&#114;&#112;h&#105;&#108;ly.&#103;&#111;v.u&#107;\">&#066;MI&#064;caerp&#104;i&#108;l&#121;.&#103;&#111;&#118;.u&#107;<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-laptop\"><\/i>&nbsp;&nbsp;<a href=\"https:\/\/www.blackwoodminersinstitute.com\/\" target=\"_blank\">Visit website<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/the-rocket-man-a-tribute-to-elton-john\/\">More about The Rocket Man \u2013 A Tribute to Elton John ><\/a>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"marker\" data-lat=\"51.6694944166\" data-lng=\"-3.19564819336\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"map-content-wrap\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-title\">Pride and Prejud(ish)<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-contacts\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-location-dot\"><\/i>&nbsp;&nbsp;Blackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-phone\"><\/i>&nbsp;&nbsp;01495 227206<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-envelope\"><\/i>&nbsp;&nbsp;<a href=\"mailto:B&#077;I&#064;c&#097;&#101;rp&#104;il&#108;&#121;&#046;&#103;ov&#046;u&#107;\">B&#077;I&#064;c&#097;e&#114;&#112;&#104;&#105;&#108;ly&#046;go&#118;.u&#107;<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-laptop\"><\/i>&nbsp;&nbsp;<a href=\"https:\/\/www.blackwoodminersinstitute.com\/\" target=\"_blank\">Visit website<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/pride-and-prejudish\/\">More about Pride and Prejud(ish) ><\/a>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"marker\" data-lat=\"51.6694944166\" data-lng=\"-3.19564819336\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"map-content-wrap\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-title\">Thank ABBA for the Music<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-contacts\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-location-dot\"><\/i>&nbsp;&nbsp;Blackwood Miners&#8217; Institute, High Street, NP12 1BB<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-phone\"><\/i>&nbsp;&nbsp;01495 227206<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-envelope\"><\/i>&nbsp;&nbsp;<a href=\"mailto:&#066;&#077;&#073;&#064;&#099;&#097;e&#114;p&#104;ill&#121;.g&#111;v&#046;&#117;&#107;\">B&#077;&#073;&#064;&#099;aerphil&#108;y&#046;go&#118;.u&#107;<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-laptop\"><\/i>&nbsp;&nbsp;<a href=\"https:\/\/www.blackwoodminersinstitute.com\/\" target=\"_blank\">Visit website<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/thank-abba-for-the-music\/\">More about Thank ABBA for the Music ><\/a>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"marker\" data-lat=\"51.6694944166\" data-lng=\"-3.19564819336\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"map-content-wrap\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-title\">The Take That Experience<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-contacts\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-location-dot\"><\/i>&nbsp;&nbsp;Blackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-phone\"><\/i>&nbsp;&nbsp;01495 227206<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-envelope\"><\/i>&nbsp;&nbsp;<a href=\"mailto:&#066;MI&#064;&#099;&#097;&#101;&#114;&#112;hil&#108;y&#046;&#103;ov.u&#107;\">BMI&#064;&#099;&#097;er&#112;&#104;i&#108;&#108;y.&#103;ov.u&#107;<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-laptop\"><\/i>&nbsp;&nbsp;<a href=\"https:\/\/www.blackwoodminersinstitute.com\/\" target=\"_blank\">Visit website<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/the-take-that-experience\/\">More about The Take That Experience ><\/a>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\t\t\t\t\t\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\n\t\t<\/section>\n\t<\/div>\n\n\n\n\n\n\t<div class=\"wrapper\">\n\t\t<section id=\"\" class=\"block featured-content-block\">\n\t\t\t<div class=\"block-title\">\n\t\t\t\t<div class=\"block-title-items\">\n\t\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-stars\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\t<h2>Discover More<\/h2>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\n\t\t\t<div class=\"featured-content-wrap\">\t\t\n                \n                    <article class=\"featured-content-card\">\n                        <a href=\"https:\/\/www.visitcaerphilly.com\/en\/listings\/basil-rustys-ice-cream-parlour\/\">\n                            <div class=\"featured-content-image\">\n                                                                    <img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2018\/03\/events.png\" alt=\"Generic Events\" \/>\n                                                            <\/div>\n\n                            <div class=\"post-feed-feature-overlay\"><\/div>\n\n                            <div class=\"featured-content-content\">\n\n                                <h3>Basil &#038; Rusty&#8217;s Ice Cream Parlour<\/h3>\n                                <div class=\"featured-content-types\"><a href=\"https:\/\/www.visitcaerphilly.com\/en\/type\/cafe\/\" rel=\"tag\">Cafe<\/a>, <a href=\"https:\/\/www.visitcaerphilly.com\/en\/type\/food-and-drink\/\" rel=\"tag\">Food &amp; Drink<\/a>, <a href=\"https:\/\/www.visitcaerphilly.com\/en\/type\/restaurant\/\" rel=\"tag\">Restaurant<\/a><\/div>\n                                \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n                                    \t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n                                     \tGelli Wastad Farm, Newport Road, Machen, Caerphilly CF83 8JE\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t                            <\/div>\n                        <\/a>\n                    <\/article>\n                \n                    <article class=\"featured-content-card\">\n                        <a href=\"https:\/\/www.visitcaerphilly.com\/en\/listings\/matthew-jones-ceramics\/\">\n                            <div class=\"featured-content-image\">\n                                                                    <img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2020\/01\/MG_3003.jpg\" alt=\"\" \/>\n                                                            <\/div>\n\n                            <div class=\"post-feed-feature-overlay\"><\/div>\n\n                            <div class=\"featured-content-content\">\n\n                                <h3>Matthew Jones Ceramics<\/h3>\n                                <div class=\"featured-content-types\"><a href=\"https:\/\/www.visitcaerphilly.com\/en\/type\/arts-culture\/\" rel=\"tag\">Arts &amp; Culture<\/a>, <a href=\"https:\/\/www.visitcaerphilly.com\/en\/type\/activities\/\" rel=\"tag\">Attractions &amp; Activities<\/a><\/div>\n                                \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n                                    \t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n                                     \tUnit 1, Mynyddislwyn Offices, Bryn Road, Blackwood NP12 2BH\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t                            <\/div>\n                        <\/a>\n                    <\/article>\n                \n                    <article class=\"featured-content-card\">\n                        <a href=\"https:\/\/www.visitcaerphilly.com\/en\/listings\/cwmcarn-forest-ravens-cafe\/\">\n                            <div class=\"featured-content-image\">\n                                                                    <img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2018\/06\/Cwmcarn-Cafe-view.jpg\" alt=\"\" \/>\n                                                            <\/div>\n\n                            <div class=\"post-feed-feature-overlay\"><\/div>\n\n                            <div class=\"featured-content-content\">\n\n                                <h3>Cwmcarn Forest &#8211; Raven&#8217;s Cafe<\/h3>\n                                <div class=\"featured-content-types\"><a href=\"https:\/\/www.visitcaerphilly.com\/en\/type\/cafe\/\" rel=\"tag\">Cafe<\/a>, <a href=\"https:\/\/www.visitcaerphilly.com\/en\/type\/food-and-drink\/\" rel=\"tag\">Food &amp; Drink<\/a>, <a href=\"https:\/\/www.visitcaerphilly.com\/en\/type\/restaurant\/\" rel=\"tag\">Restaurant<\/a><\/div>\n                                \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n                                    \t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n                                     \tCwmcarn, Nr Crosskeys N11 7FA\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t                            <\/div>\n                        <\/a>\n                    <\/article>\n                \n                    <article class=\"featured-content-card\">\n                        <a href=\"https:\/\/www.visitcaerphilly.com\/en\/listings\/the-cwmcarn-bar-bands-bunks\/\">\n                            <div class=\"featured-content-image\">\n                                                                    <img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2018\/03\/accommodation.jpeg\" alt=\"Generic Accommodation Image\" \/>\n                                                            <\/div>\n\n                            <div class=\"post-feed-feature-overlay\"><\/div>\n\n                            <div class=\"featured-content-content\">\n\n                                <h3>The Cwmcarn Hotel &#8211; Bar, Bands, Bunks<\/h3>\n                                <div class=\"featured-content-types\"><a href=\"https:\/\/www.visitcaerphilly.com\/en\/type\/accommodation\/\" rel=\"tag\">Accommodation<\/a>, <a href=\"https:\/\/www.visitcaerphilly.com\/en\/type\/food-and-drink\/\" rel=\"tag\">Food &amp; Drink<\/a>, <a href=\"https:\/\/www.visitcaerphilly.com\/en\/type\/hotel\/\" rel=\"tag\">Hotel<\/a><\/div>\n                                \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n                                    \t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n                                     \tCwmcarn NP11 7ND\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t                            <\/div>\n                        <\/a>\n                    <\/article>\n                \t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t<article class=\"featured-see-more\">\n                        <a href=\"https:\/\/www.visitcaerphilly.com\/en\/listings\/\">\n                            <div class=\"post-feed-feature-overlay-blank\"><\/div>\n\t\t\t\t\t\t\t<h3>See all Featured Businesses<\/h3>\n                        <\/a>\n                    <\/article>\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t<\/div>\n\n\n","protected":false},"featured_media":16647,"template":"","meta":{"_acf_changed":true,"inline_featured_image":false,"_links_to":"","_links_to_target":""},"event_category":[933],"tc_location":[937,942],"class_list":["post-16646","events","type-events","status-publish","hentry","event_category-live-performances","tc_location-blackwood","tc_location-blackwood-miners-institute"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pianoforte | Visit Caerphilly<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/pianoforte\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pianoforte | Visit Caerphilly\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.visitcaerphilly.com\/en\/events\/pianoforte\/\" \/>\n<meta property=\"og:site_name\" content=\"Visit Caerphilly\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-27T14:46:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2026\/04\/Pianoforte-Blackwood-Miners-Institute.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1422\" \/>\n\t<meta property=\"og:image:height\" content=\"504\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/events\\\/pianoforte\\\/\",\"url\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/events\\\/pianoforte\\\/\",\"name\":\"Pianoforte | Visit Caerphilly\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/events\\\/pianoforte\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/events\\\/pianoforte\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/Pianoforte-Blackwood-Miners-Institute.jpg\",\"datePublished\":\"2026-04-27T14:46:28+00:00\",\"dateModified\":\"2026-04-27T14:46:30+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/events\\\/pianoforte\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/events\\\/pianoforte\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/events\\\/pianoforte\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/Pianoforte-Blackwood-Miners-Institute.jpg\",\"contentUrl\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/Pianoforte-Blackwood-Miners-Institute.jpg\",\"width\":1422,\"height\":504},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/events\\\/pianoforte\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Events\",\"item\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/events\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Live Performances\",\"item\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/event-category\\\/live-performances\\\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Pianoforte\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/\",\"name\":\"Visit Caerphilly\",\"description\":\"Visit Caerphilly\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pianoforte | Visit Caerphilly","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.visitcaerphilly.com\/en\/events\/pianoforte\/","og_locale":"en_GB","og_type":"article","og_title":"Pianoforte | Visit Caerphilly","og_url":"https:\/\/www.visitcaerphilly.com\/en\/events\/pianoforte\/","og_site_name":"Visit Caerphilly","article_modified_time":"2026-04-27T14:46:30+00:00","og_image":[{"width":1422,"height":504,"url":"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2026\/04\/Pianoforte-Blackwood-Miners-Institute.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.visitcaerphilly.com\/en\/events\/pianoforte\/","url":"https:\/\/www.visitcaerphilly.com\/en\/events\/pianoforte\/","name":"Pianoforte | Visit Caerphilly","isPartOf":{"@id":"https:\/\/www.visitcaerphilly.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.visitcaerphilly.com\/en\/events\/pianoforte\/#primaryimage"},"image":{"@id":"https:\/\/www.visitcaerphilly.com\/en\/events\/pianoforte\/#primaryimage"},"thumbnailUrl":"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2026\/04\/Pianoforte-Blackwood-Miners-Institute.jpg","datePublished":"2026-04-27T14:46:28+00:00","dateModified":"2026-04-27T14:46:30+00:00","breadcrumb":{"@id":"https:\/\/www.visitcaerphilly.com\/en\/events\/pianoforte\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.visitcaerphilly.com\/en\/events\/pianoforte\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.visitcaerphilly.com\/en\/events\/pianoforte\/#primaryimage","url":"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2026\/04\/Pianoforte-Blackwood-Miners-Institute.jpg","contentUrl":"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2026\/04\/Pianoforte-Blackwood-Miners-Institute.jpg","width":1422,"height":504},{"@type":"BreadcrumbList","@id":"https:\/\/www.visitcaerphilly.com\/en\/events\/pianoforte\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.visitcaerphilly.com\/en\/"},{"@type":"ListItem","position":2,"name":"Events","item":"https:\/\/www.visitcaerphilly.com\/en\/events\/"},{"@type":"ListItem","position":3,"name":"Live Performances","item":"https:\/\/www.visitcaerphilly.com\/en\/event-category\/live-performances\/"},{"@type":"ListItem","position":4,"name":"Pianoforte"}]},{"@type":"WebSite","@id":"https:\/\/www.visitcaerphilly.com\/en\/#website","url":"https:\/\/www.visitcaerphilly.com\/en\/","name":"Visit Caerphilly","description":"Visit Caerphilly","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.visitcaerphilly.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"}]}},"_links":{"self":[{"href":"https:\/\/www.visitcaerphilly.com\/en\/wp-json\/wp\/v2\/events\/16646","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.visitcaerphilly.com\/en\/wp-json\/wp\/v2\/events"}],"about":[{"href":"https:\/\/www.visitcaerphilly.com\/en\/wp-json\/wp\/v2\/types\/events"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.visitcaerphilly.com\/en\/wp-json\/wp\/v2\/media\/16647"}],"wp:attachment":[{"href":"https:\/\/www.visitcaerphilly.com\/en\/wp-json\/wp\/v2\/media?parent=16646"}],"wp:term":[{"taxonomy":"event_category","embeddable":true,"href":"https:\/\/www.visitcaerphilly.com\/en\/wp-json\/wp\/v2\/event_category?post=16646"},{"taxonomy":"tc_location","embeddable":true,"href":"https:\/\/www.visitcaerphilly.com\/en\/wp-json\/wp\/v2\/tc_location?post=16646"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}