aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/partials/hero.html
blob: 9ff53296b9de5276e295ba204dfb1242acc6758c (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<div
  id="hero"
  class="pv5"
  style="background: linear-gradient( rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.15) ){{ with resources.Get (index .Params.images 0) }}
    , url('{{ .RelPermalink }}') center
  {{ end }};"
>
  <div class="mw7 center ph2 near-white lh-copy">
    {{ if eq .Type "about" }}
      {{ $avatar :=  index .Params.images 1 }}
      {{ if hasPrefix $avatar "http" }}
        {{ $avatar = resources.GetRemote $avatar }}
      {{ else }}
        {{ $avatar = resources.Get $avatar }}
      {{ end }}
      {{ with $avatar }}
        <img src="{{ .RelPermalink }}" class="br-100 w5 db center" />
      {{ end }}
      <h1 class="f1 tc mv1">
        {{ .Title }}
      </h1>

      {{ if .Params.personal }}
        <h2 class="f3 tc fw3 mv1">
          {{ .Site.Author.role | markdownify }}
        </h2>
      {{ end }}

      {{ with .Params.Subtitle }}
        <h2 class="f3 tc fw3 mv1">
          {{ . | markdownify }}
        </h2>
      {{ end }}


      <div class="f2 mt3 tc">
        {{ if .Params.personal }}
          {{ partial "social_links" .Site.Author }}
        {{ else }}
          {{ partial "social_links" .Site.Params }}
        {{ end }}
      </div>
    {{ else }}

      <h1 class="f1 tc berkshire-swash">{{ .Title }}</h1>
      {{ .Content }}
    {{ end }}
  </div>
</div>