-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add creator hint to logo and fix favicon (#442)
The favicon for the new logo added in #440 was broken. This fixes the favicon and update the docs with link to the logo creator.
- Loading branch information
1 parent
672a2b2
commit dea7d43
Showing
4 changed files
with
41 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<div class="sidebar-brand{% if logo %} centered{% endif %}" href="{{ pathto(master_doc) }}"> | ||
{%- block brand_content -%} | ||
{%- if logo_url %} | ||
<a href="{{ pathto(master_doc) }}" class="sidebar-logo-container"> | ||
<img class="sidebar-logo" src="{{ logo_url }}" alt="Logo"/> | ||
</a> | ||
{%- endif %} | ||
{%- if theme_light_logo and theme_dark_logo %} | ||
<a href="{{ pathto(master_doc) }}" class="sidebar-logo-container"> | ||
<img class="sidebar-logo only-light" src="{{ pathto('_static/' + theme_light_logo, 1) }}" alt="Light Logo"/> | ||
<img class="sidebar-logo only-dark" src="{{ pathto('_static/' + theme_dark_logo, 1) }}" alt="Dark Logo"/> | ||
</a> | ||
{%- endif %} | ||
|
||
{% if logo_url or (theme_light_logo and theme_dark_logo) %} | ||
<span class="sidebar-logo-creator centered"> | ||
<span>Logo created by</span> <a target="_blank" href="https://cargocollective.com/meinewilma">Mein Wilma</a> | ||
</span> | ||
{%- endif %} | ||
|
||
{% if not theme_sidebar_hide_name %} | ||
<span class="sidebar-brand-text"> | ||
<span class="sidebar-brand-text-before">SEAL</span> | ||
<span class="sidebar-brand-text-after">Search Engine Abstraction Layer</span> | ||
</span> | ||
{%- endif %} | ||
{%- endblock brand_content -%} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters