-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJSON-LD_Breadcrumb
32 lines (32 loc) · 926 Bytes
/
JSON-LD_Breadcrumb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<script type="application/ld+json">
{
"@context":"http:\/\/schema.org",
"@type":"BreadcrumbList",
"itemListElement": [ <txp:variable name="JSON_counter" value="1" /><txp:if_article_list><txp:section_list include_default="1" sections="comma,separated,list,of,sections,to,include" break=",">
{
"@type":"ListItem",
"position":<txp:variable name="JSON_counter" /><txp:variable name="JSON_counter" add />,
"item": {
"@id":"<txp:section url="1" escape="json" />",
"name":"<txp:section title="1" escape="json" />"
}
}</txp:section_list><txp:else />
{
"@type":"ListItem",
"position":1,
"item":{
"@id":"<txp:section url="1" escape="json" />",
"name":"<txp:section title="1" escape="json" />"
}
},
{
"@type":"ListItem",
"position":2,
"item":{
"@id":"<txp:permlink escape="json" />",
"name":"<txp:title escape="json" />"
}
}</txp:if_article_list>
]
}
</script>