Skip to content

Commit

Permalink
Do not display logo_name == 'false'
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner committed Jan 10, 2024
1 parent d24c4cb commit 39cbbc1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion alabaster/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<img class="logo" src="{{ pathto('_static/' ~ theme_logo, 1) }}" alt="Logo" />
{% if theme_logo_name|lower == 'true' %}
<h1 class="logo logo-name">{{ project }}</h1>
{% elif theme_logo_name %}
{% elif theme_logo_name|lower != 'false' %}
<h1 class="logo logo-name">{{ theme_logo_name }}</h1>
{% endif %}
</a>
Expand Down
2 changes: 2 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ Changelog
Next release (in development)
-----------------------------

- :bug:`215` Do not display ``logo_name`` if it is set to ``False``.

:git_tag:`0.7.15` -- 2024-01-08
-------------------------------

Expand Down

0 comments on commit 39cbbc1

Please sign in to comment.