Files
discourse/app/assets/javascripts/discourse/templates/components/discourse-logo.js.handlebars
2013-10-30 21:56:48 +01:00

18 lines
521 B
Handlebars

<div class="title">
<a href="{{unbound linkUrl}}">
{{#if showSmallLogo}}
{{#if smallLogoUrl}}
<img class="logo-small" src="{{unbound smallLogoUrl}}" width="33" height="33">
{{else}}
<i class="icon-home"></i>
{{/if}}
{{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}}
</a>
</div>