Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion themes/Flex/templates/article.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
{% import 'partial/translations.html' as translations with context %}
{{ translations.translations_for(article) }}
{% endif %}
<nav class="breadcrumb" aria-label="Breadcrumb"><a href="{{ SITEURL }}/">Home</a>{% if article.category %} &rsaquo; <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>{% endif %} &rsaquo; <span aria-current="page">{{ article.title }}</span></nav>
{# Visual breadcrumb removed by request; the BreadcrumbList JSON-LD in
partial/jsonld_article.html still gives crawlers the trail. #}
<h1 id="{{ article.slug }}" itemprop="headline">{{ article.title }}</h1>
<p>
{{ _('Posted on %(when)s in %(category)s',
Expand Down
2 changes: 1 addition & 1 deletion themes/Flex/templates/partial/sidebar.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div>
<a href="{{ SITEURL }}/">
{% if SITELOGO %}
<img src="{{ SITELOGO }}" alt="{{ SITETITLE }}" title="{{ SITETITLE }}">
<img src="{{ SITEURL }}/{{ SITELOGO }}" alt="{{ SITETITLE }}" title="{{ SITETITLE }}">
{% else %}
<img src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/img/profile.png" alt="{{ SITETITLE }}" title="{{ SITETITLE }}">
{% endif %}
Expand Down
Loading