aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/partials/profile.html
blob: fc68c0bbb9b2679589697554b9179d67580e620c (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
50
51
52
{{- $author := partial "function-authors-data.html" . -}}

<micro-header>

  <micro-header-banner>
    <picture>
      {{ partial "author-header.html" . }}
    </picture>
  </micro-header-banner>

  <micro-header-picture>
    <picture>
      {{ partial "author-picture.html" . }}
    </picture>
  </micro-header-picture>

  <section>
    <micro-header-title>
      <h2>{{ $author.name }}</h2>
      <h3>@{{ $author.user }}</h3>
    </micro-header-title>
    <micro-header-description>
      <p>
        {{ $author.description | markdownify }}
      </p>
    </micro-header-description>
  </section>

  <footer>
    <p>
      {{ safeHTML (readFile (print (partial "function-paths.html").static "/icons/feather/map-pin.svg")) }}
      <span>{{- $author.place | markdownify -}}</span>
    </p>
    <p>
      {{ safeHTML (readFile (print (partial "function-paths.html").static "/icons/feather/globe.svg")) }}
      <a href="{{ $author.domain.url }}">
        {{- $author.domain.host | markdownify -}}
      </a>
    </p>
    <p>
      {{ safeHTML (readFile (print (partial "function-paths.html").static "/icons/feather/clock.svg")) }}
      <span>{{- $author.epoch | markdownify -}}</span>
    </p>
    <p>
      {{ safeHTML (readFile (print (partial "function-paths.html").static "/icons/feather/user.svg")) }}
      <span><b>{{ with $author.feeds.rss }}{{ len . }}{{ else }} 0 {{ end }}</b> Following</span>
    </p>
  </footer>

  {{ partial "profile-tabs.html" . }}

</micro-header>