Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Maják
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hemp
Maják
Commits
dd3b8180
Commit
dd3b8180
authored
4 years ago
by
jarmil
Browse files
Options
Downloads
Patches
Plain Diff
Pridani breadcrumb - vylepsene SEO
parent
d0ad67a1
Branches
seo1
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
shared/templatetags/__init__.py
+0
-0
0 additions, 0 deletions
shared/templatetags/__init__.py
shared/templatetags/structured_data.py
+45
-0
45 additions, 0 deletions
shared/templatetags/structured_data.py
uniweb/templates/uniweb/base.html
+2
-1
2 additions, 1 deletion
uniweb/templates/uniweb/base.html
with
47 additions
and
1 deletion
shared/templatetags/__init__.py
0 → 100644
+
0
−
0
View file @
dd3b8180
This diff is collapsed.
Click to expand it.
shared/templatetags/structured_data.py
0 → 100644
+
45
−
0
View file @
dd3b8180
# 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
)
)
This diff is collapsed.
Click to expand it.
uniweb/templates/uniweb/base.html
+
2
−
1
View file @
dd3b8180
{% 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>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment