So instead of
m.css | m.css
on the index page one gets just
m.css
THEME_COLOR = '#22272e'
Value of :py:`SITENAME` is used in the :html:`<title>` tag, separated with a
-``|`` character from page / article name.
+``|`` character from page / article title. If page title is the same as
+:py:`SITENAME` (for example on the index page), only the page title is shown.
`Top navbar`_
-------------
{% set breadcrumbs = page.breadcrumb.strip().split('\n') %}
{% for i in breadcrumbs %}{% set url, _, title = i.strip().partition(' ') %}{{ title }} » {% endfor %}
{% endif %}
+{% if page.title == SITENAME %}
+{{ page.title -}}
+{% else %}
{{ page.title }} | {{ SITENAME -}}
+{% endif %}
{% endblock %}
{% block head %}