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

blog-header-img.html « header « partials « layouts - github.com/zzossig/hugo-theme-zdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e3cdfb7d67de24191cac029183987dda0ae4746c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{{ if .Params.header }}
  {{ range .Params.header }}
    {{ if eq .type "img" }}
    <div class="blog-header blog-header__align-{{ .align }}" style="background-image: url('{{ .imageSrc | relURL }}'); background-size: {{ .imageSize }};
    background-repeat: {{ .imageRepeat }}; background-position: {{ .imagePosition }}; width: 100%; height: {{ .height }}px; padding: {{ .paddingY }}px {{ .paddingX }}px;">
      {{ $header := . }}
      {{ if .title }}
        {{ range .title }}
        <div class="blog-header__title {{ if $header.titleShadow }}blog-header__title--shadow{{ end }}" style="font-size: {{ $header.titleFontSize }}px; {{ with $header.titleColor }}color:{{ . }}{{ end }};">
          {{ . }}
        </div>
        {{ end }}      
      {{ end }}
      {{ if .spaceBetweenTitleSubtitle }}
        <div style="height: {{ .spaceBetweenTitleSubtitle }}px"></div>
      {{ end }}
      {{ if .subtitle }}
        {{ range .subtitle }}
        <div class="blog-header__subtitle" style="font-size: {{ $header.subtitleFontSize }}px; {{ with $header.subtitleColor }}color:{{ . }}{{ end }}">
          {{ . }}
        </div>
        {{ end }}
      {{ end }}
    </div>
    {{ end }}
  {{ end }}
{{ end }}