views->get(
'templates/sidebars/sidebar-1',
[
'layout_type' => 'template'
]
);
?>
get(
'templates/parts/mobile-nav',
[
'mobile_sidebar' => true,
'mobile_toc' => false
]
);
$view_object->get( 'templates/parts/breadcrumbs' );
$view_object->get( 'templates/headers/layout-1' );
$author = betterdocs()->customizer->defaults->get( 'betterdocs_doc_author_enable' );
$updated_date = betterdocs()->customizer->defaults->get( 'betterdocs_doc_author_date' );
if ( $author ) {
$view_object->get( 'templates/parts/author', [ 'updated_date' => $updated_date ] );
}
$view_object->get( 'templates/contents/layout-1' );
$view_object->get( 'templates/footer' );
endwhile;
$view_object->get( 'templates/parts/navigation' );
$view_object->get( 'templates/parts/credit' );
$view_object->get( 'templates/parts/comment' );
?>