Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cstage /
wp-content /
themes /
signify /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-r-xr-xr-x
2026-08-12 08:57
customize-controls.js
318
B
-rw-r--r--
2025-02-20 17:00
customize-preview.js
1.35
KB
-rw-r--r--
2025-02-20 17:00
functions.js
16.02
KB
-rw-r--r--
2025-02-20 17:00
keyboard-image-navigation.min.js
249
B
-rw-r--r--
2025-02-20 17:00
owl.carousel.js
87.94
KB
-rw-r--r--
2025-02-20 17:00
owl.carousel.min.js
42.89
KB
-rw-r--r--
2025-02-20 17:00
skip-link-focus-fix.js
1.03
KB
-rw-r--r--
2025-02-20 17:00
skip-link-focus-fix.min.js
499
B
-rw-r--r--
2025-02-20 17:00
Save
Rename
/** * File customizer.js. * * Theme Customizer enhancements for a better user experience. * * Contains handlers to make Theme Customizer preview reload changes asynchronously. */ ( function( $ ) { // Site title and description. wp.customize( 'blogname', function( value ) { value.bind( function( to ) { $( '.site-title a' ).text( to ); } ); } ); wp.customize( 'blogdescription', function( value ) { value.bind( function( to ) { $( '.site-description' ).text( to ); } ); } ); // Header text color without header media background. wp.customize( 'header_textcolor', function( value ) { value.bind( function( to ) { if ( 'blank' === to ) { $( '.site-title a, .site-description' ).css( { 'clip': 'rect(1px, 1px, 1px, 1px)', 'position': 'absolute' } ); } else { $( '.site-title a, .site-description' ).css( { 'clip': 'auto', 'position': 'relative', 'color' : to } ); } } ); } ); var style = $( '#signify-color-scheme-css' ), api = wp.customize; if ( ! style.length ) { style = $( 'head' ).append( '<style type="text/css" id="signify-color-scheme-css" />' ) .find( '#signify-color-scheme-css' ); } // Color Scheme CSS. api.bind( 'preview-ready', function() { api.preview.bind( 'update-color-scheme-css', function( css ) { style.html( css ); } ); } ); } )( jQuery );