/ July 15, 2024
Beginner’s Guide to Hiking Snowdon

Snowdon, or Yr Wyddfa in Welsh, is Wales’ highest peak and one of the UK’s most iconic mountains. Steeped in history and folklore, Snowdon is a treasure trove of natural beauty and cultural significance. Whether you’re a seasoned hiker...

document.addEventListener("DOMContentLoaded", function () { const blocks = document.querySelectorAll('.policy-toggle-block'); blocks.forEach(function (block) { const btn = block.querySelector('.policy-toggle-btn'); const shortList = block.querySelector('.policy-list--short'); const fullList = block.querySelector('.policy-list--full'); if (!btn || !shortList || !fullList) return; btn.addEventListener('click', function () { const isOpen = fullList.style.display === 'block'; if (isOpen) { fullList.style.display = 'none'; shortList.style.display = 'block'; btn.textContent = '…view more'; } else { fullList.style.display = 'block'; shortList.style.display = 'none'; btn.textContent = 'view less'; } }); }); });