Σ(゚Д゚;≡;゚д゚)Σ(゚Д゚;≡;゚д゚)Σ(゚Д゚;≡;゚д゚)始,故人唐宰相鲁公,🆚开府南服,余以布衣从戎。明年,别公漳水湄。后明年,公以事过张睢阳庙及颜杲卿所尝往来处,悲歌慷慨,卒不负其言而从之游。今其诗具在,可考也。😭
<?php
/**
* Modified block template canvas file to render Visual and Theme Builder layouts.
*
* @since 4.9.8
* @since 4.14.7 Remove block template HTML to only display TB Template.
*
* This block template canvas should be used only when TB Template (Header/Footer/Body)
* is active on current page. Otherwise, we have to use default Block Editor template.
*
* @see {ET_Builder_Block_Templates::get_custom_query_template}
*
* @package Divi
*/
get_header();
if ( is_singular() && have_posts() ) {
// If current page is singular, render the content normally.
// Template type: frontpage, home (page), page, paged, privacypolicy, single, singular.
while ( have_posts() ) {
the_post();
the_content();
}
} else {
/**
* Fires the main content on block template canvas.
*
* Use this hook to display custom output for non singular page.
*
* @since 4.14.7
*
* Template type: 404, archive, author, category, date, home (non-page), index, search, tag, taxonomy.
*/
do_action( 'et_block_template_canvas_main_content' );
}
get_footer();