Schema: Person (copy)

{ “@context”: “https://schema.org”, “@type”: “Person”, “@id”: “%%author_website%%/about/#person”, “name”: “%%author_name%%”, “givenName”: “%%author_givenname%%”, “familyName”: “%%author_familyname%%”, “additionalName”: “%%author_middlename%%”, “birthDate”: “%%author_birthdate%%”, “gender”: “%%author_gender%%”, “description”: “%%author_description%%”, “contactPoint”: { “@type”: “ContactPoint”, “contactType”: “%%contact_type%%”, “email”: “%%contact_email%%”, “telephone”: “%%contact_phone%%”, “availableLanguage”: [ “%%available_language_1%%”, “%%available_language_2%%” ] }, “jobTitle”: “%%author_jobtitle%%”, “worksFor”:…Continue reading

DJFrancois (copy)

DJ Francois /* Basisstijlen */ * { margin: 0; padding: 0; box-sizing: border-box; font-family: ‘Arial’, sans-serif; } body { background: #0a0a0a; color: white; overflow-x: hidden; scroll-behavior: smooth; } /* Navigation */ nav { position: fixed; top: 0; width: 100%; padding:…Continue reading

DJFrancois

DJ Francois DJ FRANCOIS HOME ABOUT EVENTS & TICKETS BOOKINGS Meet the true king of The Classixs About Information about DJ Francois… Events & Tickets Upcoming events and ticket information… Bookings Booking information and contact details…Continue reading

Bandcamp embed

add_shortcode(‘bandcamp’, function($attr=[]){ $attr = shortcode_atts([ ‘width’ => 350, ‘height’ => 470, ‘album’ => null, ‘title’ => null, ‘size’ => ‘large’, ‘bgcol’ => ‘ffffff’, ‘url’ => null, ‘linkcol’ => ‘0687f5’, ‘tracklist’ => ‘false’, ‘title’ => null, ‘artwork’ => null, ], $attr);…Continue reading

JavaScript for Craft Picker

// Menu Toggle function toggleMenu() { const mobileNav = document.querySelector(‘.mobile-nav’); mobileNav.classList.toggle(‘active’); } // Close Menu on Scroll function closeMenuOnScroll() { const mobileNav = document.querySelector(‘.mobile-nav’); if (mobileNav.classList.contains(‘active’)) { mobileNav.classList.remove(‘active’); } } // Attach the scroll event listener window.addEventListener(‘scroll’, closeMenuOnScroll); // Show…Continue reading

CSS For Craft Picker

/* General Styles */ body { margin: 0; font-family: ‘Arial’, sans-serif; background-color: #f9f9f9; color: #333; line-height: 1.6; } /* Header Styles */ .header { background-color: #ffe4e1; text-align: center; padding: 20px 10px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); }…Continue reading