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

index.html « layouts - github.com/gonnux/hugo-apps-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 480423826687d1b5e0d4a773c3dd658145bf0d9d (plain)
1
2
3
4
5
6
7
8
9
10
11
{{ define "main" }}
  <div style="margin-top: 2rem; margin-bottom: 2rem">
    <img src="{{ .Site.Params.profile_img }}" style="width: 10rem; height: 10rem"/>
    <h1 style="">{{ .Site.Params.author }}</h1>
  </div>
  {{ with .Site.Params.social }}
    {{ range sort . }}
    <a href="{{ .url }}"><h5 style="display:inline">{{ .name }}</h5></a>
    {{ end }}
  {{ end }}
{{ end }}