Skip to content

Commit

Permalink
🥂 fix logo image not found
Browse files Browse the repository at this point in the history
  • Loading branch information
hellokaton committed Oct 27, 2017
1 parent 93594fa commit 268c31f
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@
<header id="header" class="header bg-white">
<div class="navbar-container">
<a href="${site_url()}" class="navbar-logo">
<img src="${theme_option('logo_url') ?! theme_url('/static/img/logo.png')}" alt="${site_title()}"/>
#if(theme_option('logo_url') == "")
<img src="${theme_url('/static/img/logo.png')}" alt="${site_title()}"/>
#else
<img src="${theme_option('logo_url')}" alt="${site_title()}"/>
#end
</a>
<div class="navbar-menu">
<a href="${site_url('/archives')}">å½’æ¡£</a>
Expand Down

0 comments on commit 268c31f

Please sign in to comment.