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/single.php
<?php
/**
 * The Template for displaying all single posts.
 *
 * @package byblos
 */
get_header(); ?>

<div id="content" class="site-content site-content-wrapper">
    
    <?php while (have_posts()) : the_post(); ?>
    
        <?php if (get_post_thumbnail_id($post->ID)) : ?>
            <div id="byblos-page-jumbotron" 
                 class="parallax-window" 
                 data-parallax="scroll"
                 data-image-src="<?php echo wp_get_attachment_url(get_post_thumbnail_id($post->ID)) ?>" >

                <header class="entry-header">
                    <?php the_title('<h1 class="entry-title">', '</h1>'); ?>
                </header><!-- .entry-header -->

            </div>
        <?php endif; ?>
    
        <div class="page-content">
            <article class="col-md-<?php echo bylbos_get_width(); ?> item-page">
                <h2 class="post-title"><?php the_title(); ?></h2>
                <div class="byblos-underline"></div>
                <?php 
                
                the_content();
                
                echo __( 'Posted on: ', 'byblos' ) .  esc_html( get_the_date() );
                echo esc_attr(get_the_author() );
                wp_link_pages(array(
                    'before' => '<div class="page-links">' . __('Pages:', 'byblos'),
                    'after' => '</div>',
                ));
                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. ?>
    <?php get_footer(); ?>
</div><!-- #primary -->