Σεπτέμβριος 2026
| Δ | Τ | Τ | Π | Π | Σ | Κ |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 |
(function(){
if ( window.gaiaCalendarAjaxReady ) { return; }
window.gaiaCalendarAjaxReady = true;
document.addEventListener( "click", function(event){
var button = event.target.closest( ".gaia-ajax-arrow" );
if (!button) { return; }
event.preventDefault();
var calendar = button.closest( ".gaia-ajax-calendar" );
if (!calendar) { return; }
var year = parseInt( calendar.dataset.year, 10 );
var month = parseInt( calendar.dataset.month, 10 );
var direction = parseInt( button.dataset.direction, 10 );
month += direction;
if (month < 1) { month = 12; year--; } if (month > 12) {
month = 1;
year++; }
calendar.classList.add( "gaia-loading" );
var params = new URLSearchParams();
params.append( "action", "gaia_calendar_change_month" );
params.append( "nonce", "245e134ac0" );
params.append( "year", year );
params.append( "month", month );
fetch( "https://gaiahikers.com/wp-admin/admin-ajax.php", {
method:"POST",
credentials: "same-origin",
headers:{ "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8" },
body: params.toString() } )
.then(function(response){
return response.json();
})
.then(function(response){
if ( response && response.success && response.data && response.data.html ) {
calendar.outerHTML = response.data.html;
} else {
calendar.classList.remove( "gaia-loading" ); }
})
.catch(function(){
calendar.classList.remove( "gaia-loading" );
});
} );
})();