first commit

This commit is contained in:
Roman Pyrih
2023-07-24 08:30:51 +02:00
commit c2e100a763
7128 changed files with 1622619 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<?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 -->