Skip to content
Snippets Groups Projects
Commit dd3b8180 authored by jarmil's avatar jarmil
Browse files

Pridani breadcrumb - vylepsene SEO

parent d0ad67a1
Branches seo1
No related tags found
No related merge requests found
# definice vlastnich tagu pro strukturovana data (pro ucely SEO)
import urllib
import django.middleware.csrf
from django import template
from django.conf import settings
from django.utils.safestring import mark_safe
register = template.Library()
@register.simple_tag
def breadcrumb(page):
""" SEO structured data typu breadcrumb """
parent = page.get_parent() if page.get_parent().url else page
return mark_safe(
"""<script type="application/ld+json">{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"itemListElement":[
{
"@type": "ListItem",
"position": 1,
"item":{
"@id": "https://pirati.cz",
"name": "Piráti" }},
{
"@type": "ListItem",
"position": 2,
"item": {
"@id": "%s",
"name": "%s"}},
{
"@type": "ListItem",
"position": 3,
"item": {
"@id": "%s",
"name": "%s"}}
</script>
"""
% (parent.url, parent, page.url, page)
)
{% load static wagtailcore_tags wagtailimages_tags wagtailmetadata_tags %}
{% load static wagtailcore_tags wagtailimages_tags wagtailmetadata_tags structured_data %}
<!doctype html>
<html lang="cs">
<head>
......@@ -86,6 +86,7 @@
</nav>
<div class="container container--default lg:py-4">
{% breadcrumb page %}
{% block content %}{% endblock %}
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment