diff options
author | luxagraf <sng@luxagraf.net> | 2019-11-15 17:32:30 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2019-11-15 17:32:30 -0500 |
commit | 9cc222c22dce703e492db491dfe1a0a93106f269 (patch) | |
tree | 76c001ccf392ec395dce5fad9b8781e7cf1b70dc /app/posts | |
parent | 16d51cbb1971076c035c3cc26461e9ae2f2165d5 (diff) |
added breadcrumbs to reviews template
Diffstat (limited to 'app/posts')
-rw-r--r-- | app/posts/templates/posts/post_detail.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/posts/templates/posts/post_detail.html b/app/posts/templates/posts/post_detail.html index 8ffcfe5..c1b6cef 100644 --- a/app/posts/templates/posts/post_detail.html +++ b/app/posts/templates/posts/post_detail.html @@ -32,6 +32,11 @@ {% block primary %} <main> + <ul class="bl" id="breadcrumbs" itemscope itemtype="http://data-vocabulary.org/Breadcrumb"> + <li><a href="/" title="luxagraf homepage" itemprop="url"><span itemprop="title">Home</span></a> → </li> + <li><a href="/guides/" title="Advice, Tools, Tips and Tricks for Full Time Van, RV, and School Bus Life." itemprop="url"> <span itemprop="title">{{object.post_type}}</span></a> → </li> + <li itemprop="title">{{object.short_title|smartypants|safe}}</li> + </ul> <article class="h-entry hentry {% with object.get_template_name_display as t %}{%if t == "double" or t == "double-dark" %} post--article--double{%endif%}{%endwith%}" itemscope itemType="http://schema.org/Article"> <header id="header" class="post-header {% with object.get_template_name_display as t %}{%if t == "double" or t == "double-dark" %}post--header--double{%endif%}{%endwith%}"> <h1 class="p-name entry-title post-title" itemprop="headline">{%if object.template_name == 1 or object.template_name == 3 %}{{object.title|smartypants|safe}}{%else%}{{object.title|smartypants|safe}}{%endif%}</h1> |