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

summary.html « team « layouts - github.com/zerostaticthemes/hugo-serif-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d9130204d8699e7d1fdbf1c6e7fa699bc3cf26ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<div class="team team-summary">
  {{ if .Params.image }}
  <div class="team-image">
    <img alt="Photo of {{ .Title }}" class="img-fluid mb-2" src="{{ .Params.image | relURL }}" />
  </div>
  {{ end }}
  <div class="team-meta">
    <h2 class="team-name">{{ .Title }}</h2>
    <p class="team-description">{{ .Params.Jobtitle }}</p>
    {{ if .Params.Linkedinurl }}
    <a target="_blank" href="{{ .Params.Linkedinurl }}">LinkedIn</a> {{ end }}
  </div>
  <div class="team-content"></div>
</div>