20 lines
653 B
Handlebars
20 lines
653 B
Handlebars
<a href="{{unbound linkUrl}}" data-auto-route="true">
|
|
{{#if showSmallLogo}}
|
|
{{#if smallLogoUrl}}
|
|
<img class="logo-small" src="{{unbound smallLogoUrl}}" width="33" height="33">
|
|
{{else}}
|
|
<i class="fa fa-home"></i>
|
|
{{/if}}
|
|
{{else}}
|
|
{{#if showMobileLogo}}
|
|
<img id="site-logo" class="logo-big" src="{{unbound mobileBigLogoUrl}}" alt="{{unbound title}}">
|
|
{{else}}
|
|
{{#if bigLogoUrl}}
|
|
<img id="site-logo" class="logo-big" src="{{unbound bigLogoUrl}}" alt="{{unbound title}}">
|
|
{{else}}
|
|
<h2 id="site-text-logo" class="text-logo">{{unbound title}}</h2>
|
|
{{/if}}
|
|
{{/if}}
|
|
{{/if}}
|
|
</a>
|