diff options
author | luxagraf <sng@luxagraf.net> | 2023-07-04 11:13:11 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2023-07-04 11:13:11 -0500 |
commit | 6e5897117124cd60ae81efb1574c6347f48e60e5 (patch) | |
tree | c3ae45055df81a1eca8aa8f07426e396d555831d /app/posts | |
parent | 58b68613db4e463d584fd9913f864df316881b3c (diff) |
fixed a bug with breadcrumb urls and src section
Diffstat (limited to 'app/posts')
-rw-r--r-- | app/posts/templates/posts/film_detail.html | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/app/posts/templates/posts/film_detail.html b/app/posts/templates/posts/film_detail.html index d0108e9..5e44d7d 100644 --- a/app/posts/templates/posts/film_detail.html +++ b/app/posts/templates/posts/film_detail.html @@ -20,17 +20,7 @@ </style> {%endblock%} {%block bodyid%}id="home" class="friends"{%endblock%} -{% block breadcrumbs %}<nav class="breadcrumbs" itemscope itemtype="http://schema.org/BreadcrumbList"> - <span class="nav-item" itemprop="item"> - <a href="/" itemprop="name">Home</a> - <meta itemprop="position" content="1" /> - </span> - <span class="nav-item" itemprop="item"> - <a href="/film/" itemprop="name">Films</a> - <meta itemprop="position" content="2" /> - </span> - </nav> -{% endblock %} +{% block breadcrumbs %}{% include "lib/breadcrumbs.html" with breadcrumbs=breadcrumbs %}{% endblock %} {% block primary %} <main> <article class="h-entry hentry entry-content content" itemscope itemType="http://schema.org/BlogPosting"> |