File: /var/www/html/wpbiancoarte/wp-content/themes/hiroshi/inc/content/templates/content-blog.php
<?php
// Hook to include additional content before page content holder
do_action( 'hiroshi_action_before_page_content_holder' );
?>
<main id="qodef-page-content" class="qodef-grid qodef-layout--template <?php echo esc_attr( hiroshi_get_grid_gutter_classes() ); ?>" role="main">
<div class="qodef-grid-inner clear">
<?php
// Hook to include additional content before blog and sidebar
do_action( 'hiroshi_action_before_blog_sidebar' );
// Include blog template
echo apply_filters( 'hiroshi_filter_blog_template', hiroshi_get_template_part( 'blog', 'templates/blog' ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
// Include page content sidebar
hiroshi_template_part( 'sidebar', 'templates/sidebar' );
?>
</div>
</main>
<?php
// Hook to include additional content after main page content holder
do_action( 'hiroshi_action_after_page_content_holder' );
?>