breadcrumb.html 458 B

123456789101112131415161718192021
  1. <script type="application/ld+json">
  2. {
  3. "@context": "http://schema.org",
  4. "@type": "BreadcrumbList",
  5. "itemListElement": [{
  6. "@type": "ListItem",
  7. "position": 1,
  8. "item": {
  9. "@id": "{{ .Site.BaseURL }}",
  10. "name": "home"
  11. }
  12. },{
  13. "@type": "ListItem",
  14. "position": 3,
  15. "item": {
  16. "@id": "{{ .Permalink }}",
  17. "name": "{{ .Title | humanize }}"
  18. }
  19. }]
  20. }
  21. </script>