| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/aecm.ihu.gr/wp-content/themes/educrat/ |
Upload File : |
<?php
/**
* The template for displaying 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 will use a different template.
*
* @package WordPress
* @subpackage Educrat
* @since Educrat 1.0
*/
get_header();
$sidebar_configs = educrat_get_page_layout_configs();
educrat_render_breadcrumbs();
?>
<section id="main-container" class="<?php echo apply_filters('educrat_page_content_class', 'container');?> inner">
<?php educrat_before_content( $sidebar_configs ); ?>
<div class="row">
<?php educrat_display_sidebar_left( $sidebar_configs ); ?>
<div id="main-content" class="main-page <?php echo esc_attr($sidebar_configs['main']['class']); ?>">
<div id="main" class="site-main clearfix" role="main">
<?php
// Start the loop.
while ( have_posts() ) : the_post();
// Include the page content template.
the_content();
// 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;
// End the loop.
endwhile;
?>
</div><!-- .site-main -->
<?php
wp_link_pages( array(
'before' => '<div class="page-links"><span class="page-links-title">' . esc_html__( 'Pages:', 'educrat' ) . '</span>',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
'pagelink' => '<span class="screen-reader-text">' . esc_html__( 'Page', 'educrat' ) . ' </span>%',
'separator' => '',
) );
?>
</div><!-- .content-area -->
<?php educrat_display_sidebar_right( $sidebar_configs ); ?>
</div>
</section>
<?php get_footer(); ?>