From 39cbbc1b614876118ce1d3209b04ea0c642033b5 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Wed, 10 Jan 2024 00:53:21 +0000 Subject: [PATCH] Do not display logo_name == 'false' --- alabaster/about.html | 2 +- docs/changelog.rst | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/alabaster/about.html b/alabaster/about.html index fdb90e1..2bf686f 100644 --- a/alabaster/about.html +++ b/alabaster/about.html @@ -4,7 +4,7 @@ {% if theme_logo_name|lower == 'true' %}

{{ project }}

- {% elif theme_logo_name %} + {% elif theme_logo_name|lower != 'false' %}

{{ theme_logo_name }}

{% endif %} diff --git a/docs/changelog.rst b/docs/changelog.rst index b9b711a..075c3bb 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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 -------------------------------