-
Notifications
You must be signed in to change notification settings - Fork 10
/
members.html
30 lines (27 loc) · 1.01 KB
/
members.html
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
<section id="members" class="home-section">
<div class="container">
<!-- Section heading -->
<div class="row">
<div class="col-xs-12 col-md-4 section-heading">
<h1 class="section-heading"><a href="{{.Site.BaseURL}}/team/{{if .Site.Params.uglyURLs}}index.html{{end}}"> Team </a></h1>
</div>
</div>
<!-- Members -->
<div class="row">
{{ range (sort (where .Site.RegularPages "Type" "member") ".Params.sort_position")}}
{{ if not .Params.is_former_member }}
{{ partial "member_simple" . }}
{{ end }}
{{ end }}
</div>
<!-- Link to all members -->
<div>
<p class="view-all">
<a href="{{ .Site.BaseURL }}/team/{{if .Site.Params.uglyURLs}}index.html{{end}}">
Full team
<i class="fa fa-angle-double-right"></i>
</a>
</p>
</div>
</div>
</section>