HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: /virtual/nagasaki/public_html/wp-content/themes/byblos/templates/right-sidebar.php
<?php
/*
 * Template Name: Right Sidebar
 */
get_header();
?>
<div class="site-content-wrapper">
    <div id="content" class="site-content">
        <?php while (have_posts()) : the_post(); ?>
            <div class="page-content">
                <article class="col-md-9 item-page">
                    <h2 class="post-title"><?php the_title(); ?></h2>
                    <div class="byblos-underline"></div>
                    <?php
                    the_content();
                    wp_link_pages(array('before' => '<div class="page-links">' . __('Pages:', 'byblos'), 'after' => '</div>'));

                    // If comments are open or we have at least one comment, load up the comment template
                    if (comments_open() || '0' != get_comments_number()) :
                        comments_template();
                    endif;
                    ?>
                </article>
                <div class="col-md-3 byblos-sidebar">
                    <?php get_sidebar(); ?>
                </div>
                
                <div class="clear"></div>
                
            </div>
        <?php endwhile; // end of the loop.   ?>
    </div>
    <?php get_footer(); ?>
</div>