Welcome to mirror list, hosted at ThFree Co, Russian Federation.

logo.html « partials « layouts - github.com/jacobsun/edidor.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db76482e5f90c40b72728a3923c3edf97b5d5d41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{ if (eq .Site.Params.Mode "light") }}
{{ if (fileExists "static/images/logo_light.svg") }}
<img class="logo" src="{{ "images/logo_light.svg" | absURL }}" alt="logo" />
{{ else }}
<img class="logo" src="{{ "images/logo.svg" | absURL }}" alt="logo" />
{{ end }}
{{ else if (eq .Site.Params.Mode "wild") }}
{{ if (fileExists "static/images/logo_wild.svg") }}
<img class="logo" src="{{ "images/logo_wild.svg" | absURL }}" alt="logo" />
{{ else }}
<img class="logo" src="{{ "images/logo.svg" | absURL }}" alt="logo" />
{{ end }}
{{ else }}
{{ if (fileExists "static/images/logo_dark.svg") }}
<img class="logo" src="{{ "images/logo_dark.svg" | absURL }}" alt="logo" />
{{ else }}
<img class="logo" src="{{ "images/logo.svg" | absURL }}" alt="logo" />
{{ end }}
{{ end }}