14 lines
1.1 KiB
Handlebars
14 lines
1.1 KiB
Handlebars
{{#if @custom.logo_for_dark_color_scheme}}
|
|
{{#match @custom.color_scheme "Dark"}}
|
|
<a href="{{@site.url}}" class="is-logo"><img src="{{@custom.logo_for_dark_color_scheme}}" alt="{{@site.title}} home"></a>
|
|
{{else match @custom.color_scheme "Partial Dark"}}
|
|
<a href="{{@site.url}}" class="is-logo"><img src="{{@custom.logo_for_dark_color_scheme}}" alt="{{@site.title}} home"></a>
|
|
{{else match @custom.color_scheme "Auto: Partial Dark/Dark"}}
|
|
<a href="{{@site.url}}" class="is-logo"><img src="{{@custom.logo_for_dark_color_scheme}}" alt="{{@site.title}} home"></a>
|
|
{{else match @custom.color_scheme "Auto: Light/Dark"}}
|
|
<a href="{{@site.url}}" class="is-dark is-logo"><img src="{{@custom.logo_for_dark_color_scheme}}" alt="{{@site.title}} home"></a>
|
|
<a href="{{@site.url}}"{{#if @site.logo}} class="is-logo"><img src="{{@site.logo}}" alt="{{@site.title}} home">{{else}} class="is-title">{{@site.title}}{{/if}}</a>
|
|
{{/match}}
|
|
{{else}}
|
|
<a href="{{@site.url}}"{{#if @site.logo}} class="is-logo"><img src="{{@site.logo}}" alt="{{@site.title}} home">{{else}} class="is-title">{{@site.title}}{{/if}}</a>
|
|
{{/if}} |