-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·50 lines (37 loc) · 1.03 KB
/
index.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]> <html class="no-js"> <![endif]-->
<html>
<head>
{{ partial "header.html" . }}
</head>
<body>
<div class="fh5co-page">
<div id="fh5co-container">
{{ partial "hero.html" . }}
{{ partial "nav.html" . }}
{{ if .Site.Params.mission.enable }}
{{ partial "mission.html" . }}
{{ end }}
{{ range (where .Site.Pages "Type" "episode").ByParam "id" }}
{{ .Render "episode"}}
{{ end }}
{{ if .Site.Params.work.enable }}
{{ partial "gallery.html" .}}
{{ end }}
{{ if .Site.Params.team.enable }}
{{ partial "team.html" .}}
{{ end }}
{{ if .Site.Params.contact.enable }}
{{ partial "contact-form.html" .}}
{{ end }}
{{ if .Site.Params.footer.enable }}
{{ partial "footer.html" .}}
{{ end }}
</div>
</div>
{{ partial "js.html" .}}
</body>
</html>