diff options
author | lxf <sng@luxagraf.net> | 2021-11-06 09:42:47 -0400 |
---|---|---|
committer | lxf <sng@luxagraf.net> | 2021-11-06 09:42:47 -0400 |
commit | d9f51299809bfb6b3ac589b7c42016d0ef240299 (patch) | |
tree | aa5f945e82fdbf1b66aca82fe5122f6ff5a12eb9 /design/templates/lib/breadcrumbs.html | |
parent | dde9914dbbc6cda18ba59024065727c8dc6bcdf4 (diff) |
moved templates to top level directory
Diffstat (limited to 'design/templates/lib/breadcrumbs.html')
-rw-r--r-- | design/templates/lib/breadcrumbs.html | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/design/templates/lib/breadcrumbs.html b/design/templates/lib/breadcrumbs.html deleted file mode 100644 index 025b8e4..0000000 --- a/design/templates/lib/breadcrumbs.html +++ /dev/null @@ -1,14 +0,0 @@ -<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>{% for crumb in breadcrumbs %}{% if crumb_url %} - <span class="nav-item" itemprop="item"> - <a href="{{crumb_url}}" itemprop="name">{{crumb}}</a> - <meta itemprop="position" content="{{ forloop.counter|add:"+1" }}" /> - </span>{% else %} - <span class="nav-item" itemprop="item"> - <span itemprop="name">{{crumb}}</span> - <meta itemprop="position" content="2" /> - </span>{% endif %}{%endfor%} - </nav> |