Linux webm006.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.103.20.6 | : 216.73.216.183
Cant Read [ /etc/named.conf ]
5.4.45
formahte
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 /
formahte /
www /
wp-content /
themes /
enliven /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
page-templates
[ DIR ]
drwxr-xr-x
template-parts
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
404.php
828
B
-rw-r--r--
adminer.php
0
B
-rw-r--r--
archive-jetpack-portfolio.php
2.17
KB
-rw-r--r--
archive-jetpack-testimonial.ph...
2.39
KB
-rw-r--r--
archive.php
1.81
KB
-rw-r--r--
comments.php
2.76
KB
-rw-r--r--
content-index.php
174.94
KB
-rw-r--r--
footer.php
1.98
KB
-rw-r--r--
functions.php
13.12
KB
-rw-r--r--
functionsbak.php
12.63
KB
-rw-r--r--
header.php
3.64
KB
-rw-r--r--
home.php
2.95
KB
-rw-r--r--
index.php
1.78
KB
-rw-r--r--
license.txt
17.32
KB
-rw-r--r--
logo.jpg
174.94
KB
-rw-r--r--
page.php
1.54
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.txt
9.38
KB
-rw-r--r--
screenshot.png
823.62
KB
-rw-r--r--
search.php
1.52
KB
-rw-r--r--
sidebar.php
298
B
-rw-r--r--
single-jetpack-portfolio.php
841
B
-rw-r--r--
single-jetpack-testimonial.php
814
B
-rw-r--r--
single.php
1.12
KB
-rw-r--r--
style.css
58.46
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : archive-jetpack-testimonial.php
<?php /** * The template for displaying the Jetpack Testimonial archive page. * * Learn more: http://codex.wordpress.org/Template_Hierarchy * * @package Enliven */ get_header(); ?> <?php $image_url = get_theme_mod( 'testimonial-header-image' ); ?> <?php if( $image_url ) { ?> <div class="hero-container img-banner" style="background-image: url('<?php echo esc_url($image_url); ?>');"> <div class="overlay"></div> <?php } else { ?> <div class="hero-container nrml-banner"> <?php } ?> <div class="hero-wrapper"> <h1 class="page-title-hero"><?php echo esc_html( get_theme_mod( 'testimonial_page_title', 'Testimonials' ) ); ?></h1> <?php $testimonial_subtitle = get_theme_mod( 'testimonial_page_subtitle', '' ); if( ! empty( $testimonial_subtitle ) ) : ?> <p class="page-subtitle-hero"> <?php echo esc_html( $testimonial_subtitle ); ?> </p> <?php endif; ?> </div> </div><!-- .hero-container --> <?php $testimonial_page_description = get_theme_mod( 'testimonial_page_description', '' ); if( ! empty ( $testimonial_page_description ) ) : ?> <div class="enl-test-description container"> <div class="row"> <div class="col-md-10 col-md-offset-1"> <?php echo wp_kses_post( $testimonial_page_description ); ?> </div> </div> </div> <?php endif; ?> <div class="container"> <div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <?php if ( have_posts() ) : ?> <?php /* Start the Loop */ $counter = 0; ?> <div class="row"> <?php while ( have_posts() ) : the_post(); ?> <?php /* * Include the Post-Format-specific template for the content. * If you want to override this in a child theme, then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ get_template_part( 'template-parts/content-testimonial', get_post_format() ); ?> <?php $counter++; if ($counter%3 == 0) { echo '</div><div class="row">'; } ?> <?php endwhile; ?> </div><!--.row--> <?php the_posts_pagination(); ?> <?php else : ?> <?php get_template_part( 'template-parts/content', 'none' ); ?> <?php endif; ?> </main><!-- #main --> </div><!-- #primary --> </div><!-- .container --> <?php get_footer(); ?>
Close