summaryrefslogtreecommitdiffstats
path: root/docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/partials/components/author-github-data-card.html
blob: 622df79532a7f15aa89c6164d6c535d905e17bd7 (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
{{ $author := .context.Params.author }}
{{ if $author }}
  <aside class="mw5 center bg-white br3 pa3 pa4-ns mv3 ba b--black-10 nested-links">
    {{ $urlPre := "https://api.github.com" }}
    {{ $user_json := getJSON $urlPre "/users/" $author }}

    <div class="tc">

      {{ if $user_json.avatar_url }}
        <a href="{{ $user_json.html_url }}" class="link  hover-bg-light-gray pa1 br-100">
          <img src="{{ $user_json.avatar_url }}&size={{ .size }}" alt="" class="br-100 ba b--light-gray">
        </a>
      {{ end }}

      {{ if $user_json.name }}
        <h3 class="f4">
          <a href="{{ $user_json.html_url }}" class="link dim">
            {{ $user_json.name }}
          </a>
        </h3>
        <hr class="mw3 bb bw1 b--black-10">
      {{ end }}

      {{ if $user_json.bio }}
        <p class="lh-copy measure center f6 black-70">
          {{ $user_json.bio }}
        </p>
      {{ end }}

    </div>

  </aside>
{{ end }}