29 lines
769 B
HTML
29 lines
769 B
HTML
<div class="header__content">
|
|
{{ with site.Params.logo.main }}
|
|
{{ with resources.Get . }}
|
|
<a href="/">
|
|
<img
|
|
class="header__logo"
|
|
src="{{ .RelPermalink }}"
|
|
width="{{ .Width }}"
|
|
alt="{{ site.Params.logo.mainAlt }}" />
|
|
</a>
|
|
{{ else }}
|
|
{{ errorf "Unable to find %s in assets directory" . }}
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
{{ if site.Params.header.buttons }}
|
|
<div class="header__spacer"> </div>
|
|
{{ range site.Params.header.buttons }}
|
|
<a
|
|
class="{{ compare.Conditional (compare.Eq .type "text") "header__button--text" "header__button" }}"
|
|
href="{{ .url | safeURL }}">
|
|
{{ if .icon }}
|
|
<i class="header__button__icon" data-feather="{{ .icon }}"></i>
|
|
{{ end }}
|
|
{{ .name }}
|
|
</a>
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|