Check logo exists before showing it

This commit is contained in:
David Darnes 2018-01-01 19:20:43 +00:00
parent efeb7623ea
commit a787982af8

View File

@ -1,6 +1,6 @@
<header class="header"> <header class="header">
<div class="container"> <div class="container">
{% include site-logo.html %} {% if site.logo %}{% include site-logo.html %}{% endif %}
{% include site-nav.html %} {% include site-nav.html %}
</div> </div>
</header> </header>