home
/
aioutajg
/
unblockedgames247.com
/
wp-content
/
themes
/
news-portal
/
Go to Home Directory
+
Upload
Create File
root@0UT1S:~$
Execute
By Order of Mr.0UT1S
[DIR] ..
N/A
[DIR] assets
N/A
[DIR] inc
N/A
[DIR] languages
N/A
[DIR] layouts
N/A
[DIR] template-parts
N/A
[DIR] templates
N/A
404.php
977 bytes
Rename
Delete
archive.php
1.16 KB
Rename
Delete
changelog.txt
7.08 KB
Rename
Delete
comments.php
3.30 KB
Rename
Delete
footer.php
1.06 KB
Rename
Delete
functions.php
7.71 KB
Rename
Delete
header.php
2.66 KB
Rename
Delete
index.php
1.27 KB
Rename
Delete
page.php
1.05 KB
Rename
Delete
readme.txt
2.96 KB
Rename
Delete
rtl.css
12.06 KB
Rename
Delete
screenshot.png
302.58 KB
Rename
Delete
search.php
1.34 KB
Rename
Delete
sidebar-footer.php
2.48 KB
Rename
Delete
sidebar-left.php
470 bytes
Rename
Delete
sidebar.php
439 bytes
Rename
Delete
single.php
1.21 KB
Rename
Delete
style.css
65.56 KB
Rename
Delete
<?php /** * The main template file * * This is the most generic template file in a WordPress theme * and one of the two required files for a theme (the other being style.css). * It is used to display a page when nothing more specific matches a query. * E.g., it puts together the home page when no home.php file exists. * * @link https://codex.wordpress.org/Template_Hierarchy * * @package Mystery Themes * @subpackage News Portal * @since 1.0.0 */ get_header(); ?> <div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <?php if ( have_posts() ) : if ( is_home() && ! is_front_page() ) : ?> <header> <h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1> </header> <?php endif; /* Start the Loop */ $news_portal_archive_layout = news_portal_get_customizer_option_value( 'news_portal_archive_layout' ); while ( have_posts() ) : the_post(); get_template_part( 'layouts/archive/'. $news_portal_archive_layout ); endwhile; the_posts_navigation(); else : get_template_part( 'template-parts/content', 'none' ); endif; ?> </main><!-- #main --> </div><!-- #primary --> <?php news_portal_get_sidebar(); get_footer();
Save