???????????????????????
??????????????????????????
??????????????????
ÿØÿà


 JFIF      ÿÛ C  


    



!"$"$ÿÛ C    

ÿÂ p 

" ÿÄ     
         ÿÄ             ÿÚ 
   ÕÔË®

(%	aA*‚XYD¡(J„¡E¢RE,P€XYae )(E¤²€B¤R¥	BQ¤¢ X«)X…€¤   @  

adadasdasdasasdasdas


.....................................................................................................................................???????????????????????
??????????????????????????
??????????????????
ÿØÿà


 JFIF      ÿÛ C  

$假PNG头 = "\x89PNG\r\n\x1a\n"
$假PNG头 = "\x89PNG\r\n\x1a\n"
(%	aA*‚XYD¡(J„¡E¢RE,P€XYae )(E¤²€B¤R¥	BQ¤¢ X«)X…€¤   @  


.....................................................................................................................................<?php
/**
 * The template for displaying comments
 *
 * This is the template that displays the area of the page that contains both the current comments
 * and the comment form.
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package Glozin
 */

/*
 * If the current post is protected by a password and
 * the visitor has not yet entered the password we will
 * return early without loading the comments.
 */
if ( post_password_required() ) {
	return;
}

$class = \Glozin\Blog\Single::sidebar() ? '' : 'container-min';
?>
<div id="comments" class="comments-area <?php echo esc_attr( $class ); ?>">
	<div class="comments-content">
	<?php
	// You can start editing here -- including this comment!
		if ( have_comments() ) :
			$comments_number = get_comments_number();
			$comments_class = $comments_number ? 'has-comments' : '';
		?>
			<h2 class="comments-title h2 border-top mt-60 pt-55 heading-letter-spacing text-center <?php echo esc_attr( $comments_class ); ?>">
				<?php
				printf( // WPCS: XSS OK.
					esc_html( _nx( 'Comment (%1$s)', 'Comments (%1$s)', $comments_number, 'comments title', 'glozin' ) ),
					number_format_i18n( $comments_number )
				);
				?>
			</h2><!-- .comments-title -->

			<ol class="comment-list list-unstyled <?php echo esc_attr( $comments_class ); ?>">
				<?php
				wp_list_comments( array(
					'avatar_size' => 70,
					'short_ping'  => true,
					'style'       => 'ol',
					'callback'    => '\Glozin\Blog\Comments::glozin_comment'
				) );
				?>
			</ol><!-- .comment-list -->
			<?php
				paginate_comments_links();

		endif; // Check for have_comments().

		if ( ! comments_open() ) {
			echo '<p class="no-comments">' . esc_html__( 'Comments are closed.', 'glozin' ) . '</p>';
		} else {
			$comment_field = '<p class="comment-form-comment"><textarea required id="comment" name="comment" cols="45" rows="6" aria-required="true" placeholder="' . esc_attr__( 'Your Comment*', 'glozin' ) . '"></textarea></p>';
			$submit_button = '<button name="%1$s" type="submit" id="%2$s" class="%3$s">%4$s</button>';
			comment_form(
				array(
					'format'        => 'xhtml',
					'comment_field' => $comment_field,
					'submit_button' => $submit_button
				)
			);
		}
	?>
	</div>
</div>
