27 lines
883 B
PHP
27 lines
883 B
PHP
<?php
|
|
/**
|
|
* Хлебные крошки для страницы Подготовки к школе
|
|
* Schema.org BreadcrumbList
|
|
*
|
|
* @package Dekart
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
?>
|
|
<div class="container breadcrumbs-wrapper">
|
|
<ul class="breadcrumbs" itemscope itemtype="https://schema.org/BreadcrumbList" role="navigation" aria-label="Breadcrumb">
|
|
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
|
|
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" itemprop="item" title="Главная">
|
|
<span itemprop="name">Главная</span>
|
|
</a>
|
|
<meta itemprop="position" content="1">
|
|
</li>
|
|
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
|
|
<span class="last_item" itemprop="name">Подготовка к школе</span>
|
|
<meta itemprop="position" content="2">
|
|
</li>
|
|
</ul>
|
|
</div>
|