| Linux webm001.cluster123.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 Path : /home/lapjouc/www/wp-content/themes/laap/ |
| Current File : /home/lapjouc/www/wp-content/themes/laap/single.php |
<?php
/**
* The template for displaying all single posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package laap
*/
get_header();
?>
<main id="primary" class="site-main">
<div class="container">
<div class="row mainRow">
<div class="col75">
<?php
while (have_posts()) :
the_post();
get_template_part('template-parts/content', get_post_type());
/* the_post_navigation(
array(
'prev_text' => '<span class="nav-subtitle">' . esc_html__('Previous:', 'laap') . '</span> <span class="nav-title">%title</span>',
'next_text' => '<span class="nav-subtitle">' . esc_html__('Next:', 'laap') . '</span> <span class="nav-title">%title</span>',
)
);
*/
endwhile; // End of the loop.
?>
</div>
<div class="col25">
<?php dynamic_sidebar( 'sidebar-1' ); ?>
</div>
</div>
</div>
</main><!-- #main -->
<?php
get_footer();