diff options
author | luxagraf <sng@luxagraf.net> | 2022-12-29 19:16:22 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2022-12-29 19:16:22 -0600 |
commit | 171e38c61daced0b97081a226bc2beb215730509 (patch) | |
tree | 4d053e7a9abaab02ca44788c2a3e8f1f1e0843ba /templates | |
parent | b6613deaa9c18887c442a6275290c1e8c25a5f1f (diff) |
posts: changed essays to notes. less pretentious.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/base.html | 2 | ||||
-rw-r--r-- | templates/lib/breadcrumbs_detail.html | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/templates/base.html b/templates/base.html index 6816c84..1a1fa9a 100644 --- a/templates/base.html +++ b/templates/base.html @@ -29,7 +29,7 @@ </div> <nav> <a class="nav-item smcaps" href="{% url "jrnl:list" %}" title="Stories of life on the road.">Jrnl</a> - <a class="nav-item smcaps" href="/essays/" title="Essays">Essays</a> + <a class="nav-item smcaps" href="/notes/" title="Notes">Notes</a> <a class="nav-item smcaps" href="/friends/" title="Join the 'friends of a long year' newsletter">Friends</a> <a class="nav-item smcaps" href="/range/" title="Join the 'Range' newsletter">Range</a> <a class="nav-item smcaps" href="/about" title="About Scott">About</a> diff --git a/templates/lib/breadcrumbs_detail.html b/templates/lib/breadcrumbs_detail.html index 170c53a..48a7768 100644 --- a/templates/lib/breadcrumbs_detail.html +++ b/templates/lib/breadcrumbs_detail.html @@ -1,9 +1,9 @@ <ol class="bl" id="breadcrumbs" itemscope itemtype="http://schema.org/BreadcrumbList"> - <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"> + <li class="nav-item" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"> <a itemprop="item" href="/"><span itemprop="name">Home</span></a> → <meta itemprop="position" content="1" /> </li> - {% for crumb in breadcrumbs %}<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">{% if forloop.last %} + {% for crumb in breadcrumbs %}<li class="nav-item" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">{% if forloop.last %} <span itemprop="item"> <span itemprop="name" class="faint">{{crumb}}</span> </span> |