Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,10 @@ menu_settings:
# ---------------------------------------------------------------

# Schemes
scheme: Muse
#scheme: Muse
#scheme: Mist
#scheme: Pisces
#scheme: Gemini
scheme: Gemini


# ---------------------------------------------------------------
Expand Down
9 changes: 7 additions & 2 deletions layout/_partials/header/brand.swig
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="site-brand-wrapper">
<div class="site-meta {% if theme.custom_logo.enabled %}custom-logo{% endif %}">
{% if theme.custom_logo.image and theme.scheme === 'Muse' %}
<div class="site-meta{% if theme.custom_logo.enabled %} custom-logo{% endif %}">
{% if theme.custom_logo.enabled and theme.custom_logo.image and theme.scheme === 'Muse' %}
<div class="site-meta-headline">
<a>
<img class="custom-logo-image" src="{{ theme.custom_logo.image }}"
Expand All @@ -15,6 +15,11 @@
<span class="site-title">{{ config.title }}</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<div{% if theme.custom_logo.enabled %} class="custom-logo"{% endif %}>
{% if theme.custom_logo.enabled and theme.custom_logo.image and (theme.scheme === 'Gemini' or theme.scheme === 'Pisces') %}
<img class="custom-logo-image" src="{{ theme.custom_logo.image }}" alt="{{ config.title }}"/>
{% endif %}
</div>
{% if theme.seo %}
<h1 class="site-subtitle" itemprop="description">{{ config.subtitle }}</h1>
Expand Down