
<center><h2><strong>Ubuntu</strong></h2>
­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php
/**
 * The template for displaying comments
 *
 */

if ( post_password_required() ) {
	return;
}
?>

<div id="comments" class="comments-area">

	<?php
	if ( have_comments() ) : ?>
		<h2 class="comments-title">Commentaires</h2>

		<?php the_comments_navigation(); ?>

		<ol class="comment-list">
				<?php
						wp_list_comments( array(
								'style'       => 'ol',
								'short_ping'  => true,
								'callback' => 'better_comments'
						) );
				?>
		</ol><!-- .comment-list -->

		<?php
		the_comments_navigation();

		// If comments are closed and there are comments, let's leave a little note, shall we?
		if ( ! comments_open() ) : ?>
			<p class="no-comments">Les commentaires sont fermés sur cet article.</p>
		<?php
		endif;

	endif;

	comment_form();
	?>

</div>
