forked from plhw57tbe/SoftwareMethodology
parent
b91ff2e0bb
commit
2a56350e2c
@ -1,19 +1,26 @@
|
||||
{# 面包屑导航 - 使用Schema.org结构化数据 #}
|
||||
<ul itemscope itemtype="https://schema.org/BreadcrumbList" class="breadcrumb">
|
||||
|
||||
{# 循环遍历面包屑路径中的每个节点 #}
|
||||
{% for name,url in names %}
|
||||
<li itemprop="itemListElement" itemscope
|
||||
itemtype="https://schema.org/ListItem">
|
||||
<a href="{{ url }}" itemprop="item" >
|
||||
<span itemprop="name">{{ name }}</span></a>
|
||||
{# 可点击的面包屑链接 #}
|
||||
<a href="{{ url }}" itemprop="item">
|
||||
<span itemprop="name">{{ name }}</span>
|
||||
</a>
|
||||
{# 位置序号 - Schema.org结构化数据 #}
|
||||
<meta itemprop="position" content="{{ forloop.counter }}"/>
|
||||
|
||||
</li>
|
||||
{% endfor %}
|
||||
|
||||
{# 当前页面(最后一个节点,不可点击) #}
|
||||
<li class="active" itemprop="itemListElement" itemscope
|
||||
itemtype="https://schema.org/ListItem">
|
||||
{# 当前页面名称 #}
|
||||
<span itemprop="name">{{ title }}</span>
|
||||
{# 当前位置序号 #}
|
||||
<meta itemprop="position" content="{{ count }}"/>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</ul>
|
||||
Loading…
Reference in new issue