Файловый менеджер - Редактировать - /home/neurocs/www/page.php.tar
Назад
home/neurocs/www/wp-content/themes/twentyseventeen/page.php 0000644 00000001752 15010420143 0020250 0 ustar 00 <?php /** * The template for displaying all pages * * This is the template that displays all pages by default. * Please note that this is the WordPress construct of pages * and that other 'pages' on your WordPress site may use a * different template. * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package WordPress * @subpackage Twenty_Seventeen * @since Twenty Seventeen 1.0 * @version 1.0 */ get_header(); ?> <div class="wrap"> <div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <?php while ( have_posts() ) : the_post(); get_template_part( 'template-parts/page/content', 'page' ); // If comments are open or we have at least one comment, load up the comment template. if ( comments_open() || get_comments_number() ) : comments_template(); endif; endwhile; // End the loop. ?> </main><!-- #main --> </div><!-- #primary --> </div><!-- .wrap --> <?php get_footer(); home/neurocs/www/wp-content/themes/mediclinic/page.php 0000644 00000001615 15010433170 0017103 0 ustar 00 <?php $mkdf_sidebar_layout = mediclinic_mikado_sidebar_layout(); get_header(); mediclinic_mikado_get_title(); get_template_part('slider'); ?> <div class="mkdf-container mkdf-default-page-template"> <?php do_action('mediclinic_mikado_after_container_open'); ?> <div class="mkdf-container-inner clearfix"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="mkdf-grid-row"> <div <?php echo mediclinic_mikado_get_content_sidebar_class(); ?>> <?php the_content(); do_action('mediclinic_mikado_page_after_content'); ?> </div> <?php if($mkdf_sidebar_layout !== 'no-sidebar') { ?> <div <?php echo mediclinic_mikado_get_sidebar_holder_class(); ?>> <?php get_sidebar(); ?> </div> <?php } ?> </div> <?php endwhile; endif; ?> </div> <?php do_action('mediclinic_mikado_before_container_close'); ?> </div> <?php get_footer(); ?>