mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
18 lines
521 B
Handlebars
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>
|