Skip to content

Commit

Permalink
Merge pull request #171 from isubit/D8ISUTHEME-154
Browse files Browse the repository at this point in the history
D8ISUTHEME-154 Allow site logo to be optional.
  • Loading branch information
sacarney committed Jun 23, 2021
2 parents ccefb6c + f591d55 commit 82a73e0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion templates/blocks/block--system-branding-block.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@

{% block content %}
<div class="isu-wordmark">
<img class="isu-wordmark-logo" src="{{ site_logo }}" {% if iastate_logo_alt %} alt="{{ iastate_logo_alt }}" {% else %} alt="Iowa State University logo"{% endif %}>
{% if site_logo %}
<img class="isu-wordmark-logo" src="{{ site_logo }}" {% if iastate_logo_alt %} alt="{{ iastate_logo_alt }}" {% else %} alt="Iowa State University logo"{% endif %}>
{% endif %}

{% if iastate_unit_name %}

Expand Down

0 comments on commit 82a73e0

Please sign in to comment.