HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.2.34
System: Linux atalantini.com 3.10.0-1127.13.1.el7.x86_64 #1 SMP Tue Jun 23 15:46:38 UTC 2020 x86_64
User: root (0)
PHP: 7.2.34
Disabled: NONE
Upload Files
File: //opt/blanc/page.php
<?php
/**
 * The template for displaying pages except for member/cart pages.
 * @link       http://welcustom.net/
 * @author      Mamekko
 * @copyright   Copyright (c)2014 welcustom.net
 */
get_header(); ?>

<div class="row">
    <div class="columns">
        <?php get_template_part('breadcrumbs'); ?>
    </div><!-- columns -->
</div><!-- row -->

<div class="row">
    <div class="columns medium-8 large-9">
    <?php if(have_posts()): while(have_posts()): the_post(); ?>
        <article <?php post_class(); ?>>
            <h1><?php the_title(); ?></h1>
            <?php the_content(); ?>
            <?php comments_template(); ?>
        </article>
    <?php endwhile; endif; ?>
    </div><!-- columns -->

    <div class="columns medium-4 large-3">
        <div id="sidebar">
            <?php dynamic_sidebar('column-page'); ?>
        </div>
    </div><!-- columns -->

</div><!-- row -->

<?php get_footer(); ?>