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

article-author.html « partials « layouts - github.com/cntrump/hugo-notepadium.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a3e12e3c412651a272d316bd993a2b7c9b0fd2da (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
{{- $profile := .Params.profile -}}
{{- if not $profile -}}
  {{- $profile = site.Params.profile -}}
{{- end -}}

{{- with $profile -}}
{{- if eq .enable true -}}
<section class="article author">
  {{- with .avatar -}}<img class="avatar" src="{{- . | relURL -}}" alt>{{- end -}}
  
  {{- with .name -}}<p class="name">{{- . -}}</p>{{- end -}}
  
  {{- with .bio -}}<div class="bio">{{- . | markdownify -}}</div>{{- end -}}

  <div class="details">
    {{- with .github -}}
      <a class="item" href="https://github.com/{{- . | safeHTML -}}" target="_blank"><span class="iconfont icon-github"></span>&nbsp;{{- . -}}</a>
    {{- end -}}

    {{- with .docker -}}
      <a class="item" href="https://hub.docker.com/u/{{- . | safeHTML -}}" target="_blank"><span class="iconfont icon-docker"></span>&nbsp;{{- . -}}</a>
    {{- end -}}

    {{- with .twitter -}}
      <a class="item" href="https://twitter.com/{{- . | safeHTML -}}" target="_blank"><span class="iconfont icon-twitter"></span>&nbsp;@{{- . -}}</a>
    {{- end -}}
    
    {{- with .email -}}
      <a class="item" href="mailto:{{- . | safeHTML -}}" target="_blank"><span class="iconfont icon-email"></span>&nbsp;{{- . -}}</a>
    {{- end -}}
  </div>
</section>
{{- end -}}
{{- end -}}