Files
Roman Pyrih c2e100a763 first commit
2023-07-24 08:30:51 +02:00

26 lines
760 B
PHP

<?php
/**
* The template part for selected title (breadcrubms) section
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
?>
<section class="page_breadcrumbs ds section_padding_top_25 section_padding_bottom_25">
<div class="container">
<div class="col-sm-12 text-center text-md-left display_table_md">
<h2 class="small display_table_cell_md">
<?php
get_template_part( 'template-parts/breadcrumbs/page-title-text' );
?>
</h2>
<?php if ( function_exists( 'fw_ext_breadcrumbs' ) ) { ?>
<div class="display_table_cell_md breadcrumb">
<?php fw_ext_breadcrumbs(); ?>
</div>
<?php } ?>
</div><!-- eof .col-* .display_table_md -->
</div><!-- eof .container -->
</section><!-- eof .page_breadcrumbs -->