<script>
document.addEventListener('DOMContentLoaded', function() {
const contentWrapper = document.querySelector('section#itemPagination');
if (contentWrapper) {
const backButton = document.createElement('a');
backButton.className = 'btn btn--border theme-btn--primary-inverse sqs-button-element--secondary backto';
backButton.href = '/joshua-homes/';
backButton.textContent = 'Back to Photo Gallery';
contentWrapper.insertAdjacentElement('afterend', backButton);
}
});
</script>
<style>
a.backto {
transform: translateX(-50%);
left: 50%;
margin-bottom: 20px;
}
</style>