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

team.html « partials « layouts - github.com/SteveLane/hugo-icon.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db2db51d1b990e5f700045c3133b7d7813e7280b (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
<div id="fh5co-team" data-section="team">
  <div class="container">
    {{ with .Site.Params.team }}
    <div class="col-md-6 col-md-offset-3 text-center fh5co-heading">
      <h2>{{ .title }}</h2>
      <p>{{ .description | markdownify }}</p>
    </div>
    {{ range .item }}
    <div class="col-md-4">
      <div class="person">
	<img src="{{ .img | absURL }}" alt="" class="img-responsive">
	<h3>{{ .name }}</h3>
	<h4>{{ .position }}</h4>
	<p>{{ .description | markdownify }}</p>
	<ul class="social">
	  {{ if isset . "facebook" }}
	  <li><a href="{{ .facebook }}"><i class="icon-facebook"></i></a></li>
	  {{ end }}
	  {{ if isset . "twitter" }}
	  <li><a href="{{ .twitter }}"><i class="icon-twitter"></i></a></li>
	  {{ end }}
	  {{ if isset . "dribbble" }}
	  <li><a href="{{ .dribble }}"><i class="icon-dribbble"></i></a></li>
	  {{ end }}
	  {{ if isset . "instagram" }}
	  <li><a href="{{ .instagram }}"><i class="icon-instagram"></i></a></li>
	  {{ end }}
	  {{ if isset . "github" }}
	  <li><a href="{{ .github }}"><i class="icon-github"></i></a></li>
	  {{ end }}
	  {{ if isset . "linkedin" }}
	  <li><a href="{{ .linkedin }}"><i class="icon-linkedin"></i></a></li>
	  {{ end }}
	</ul>
      </div>
    </div>
    {{ end }}
    {{ end }}
  </div>
</div> <!-- END fh5co-team -->