| Server IP : 193.239.44.202 / Your IP : 216.73.217.139 Web Server : Apache System : Linux web12 6.18.40-1 #1 SMP PREEMPT_DYNAMIC Sat Jul 25 21:08:44 CEST 2026 x86_64 User : ( 388902) PHP Version : 7.4.33 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /home/virtualki/271628/domains/midiled.pl/public_html/wp-content/themes/creativeily/ |
Upload File : |
<?php /** * The front page template file * * If the user has selected a static page for their homepage, this is what will * appear. * Learn more: https://codex.wordpress.org/Template_Hierarchy * * @package Creativeily */ get_header(); ?> <div class="wrapmain"> <div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <?php // Show the selected frontpage content. if ( have_posts() ) : while ( have_posts() ) : the_post(); get_template_part( 'template-parts/post/content'); endwhile; echo "<div class='post-nav-blog'>"; echo the_posts_pagination(); echo "</div>"; else : // I'm not sure it's possible to have no posts when this page is shown, but WTH. get_template_part( 'template-parts/post/content'); endif; ?> </main><!-- #main --> </div><!-- #primary --> <?php get_sidebar(); ?> </div> <?php get_footer();