initial upload

This commit is contained in:
2026-04-20 22:55:59 +02:00
commit 56a8b97875
115 changed files with 43622 additions and 0 deletions
@@ -0,0 +1,11 @@
jQuery( function( $ ) {
wp.customize('site_identity_font_family',function ( value ) {
value.bind(function ( to ) {
$("head").append("<link rel='stylesheet' href='https://fonts.googleapis.com/css?family="+to+":200,300,400,500,600,700,800,900|' rel='stylesheet' type='text/css'>");
document.body.style.setProperty('--site-identity-font-family', to);
}
);
} );
} );