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

index.html « layouts - github.com/funkydan2/alpha-church.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 106190876c057bdee7c3870a9d9ea89c27fb796a (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!--
	Alpha by HTML5 UP
	html5up.net | @ajlkn
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->

{{ partial "header" . }}
{{ partial "nav" . }}
{{ partial "banner" . }}

			{{ "<!-- Main -->" | safeHTML }}
				<section id="main" class="container">

					{{ if .Site.Params.Landing.Services.title }}
					<section class="box special">
						<header class="major">
							<h2>{{ .Site.Params.Landing.Services.title }}</h2>
							<p>{{ .Site.Params.Landing.Services.text | markdownify }}</p>
						</header>
						<!--<span class="image featured"><img src="{{ .Site.Params.Landing.Feature.image }}" alt="" /></span>-->
						<!--This is where I need to put in Google Map magic-->
						{{ partial "map" . }}
					</section>
					{{ end }}

					{{ if .Site.Params.Landing.Feature_icons.enable }}
						{{ $tiles := .Site.Params.Landing.Feature_icons.tile }}
						{{ $len := (len $tiles) }}
						<section class="box special features">
							<div class="features-row">
								{{ range $index, $key := $tiles}}
									<section>
										<span class="icon major {{ $key.icon }} accent{{- $key.accent -}}"></span>
										<h3>{{ $key.title }}</h3>
										<p>{{ $key.text | markdownify }}</p>
									</section>
									{{ if and (mod $index 2) (lt (add $index 1) $len) }}
											</div>
											<div class="features-row">
									{{ end }}
								{{ end }}
							</div>
						</section>
					{{ end }}

					{{ if .Site.Params.Landing.Feature_images.enable }}
						{{ $tiles := .Site.Params.Landing.Feature_images.tile }}
						{{ $len := (len $tiles) }}
						<div class="row">
							{{ range $index, $key := $tiles }}
								<div class="6u 12u(narrower)">

									<section class="box special">
										<span class="image featured"><img src="{{ $key.image }}" alt="" /></span>
										<h3>{{ $key.title }}</h3>
										<p>{{ $key.text | markdownify }}</p>
										{{ if $key.button_text }}
											<ul class="actions">
												<li><a href="{{ $key.url }}" class="button alt">{{ $key.button_text }}</a></li>
											</ul>
											{{ end }}
										</section>
									</div>
									{{ if and (mod $index 2) (lt (add $index 1) $len) }}
										</div>
										<div class="row">
									{{ end }}
							{{ end }}
					</div>
					{{ end }}

				</section>

			{{ "<!-- CTA -->" | safeHTML }}
				<section id="cta">

					<h2>Sign up for beta access</h2>
					<p>Blandit varius ut praesent nascetur eu penatibus nisi risus faucibus nunc.</p>

					<form>
						<div class="row uniform 50%">
							<div class="8u 12u(mobilep)">
								<input type="email" name="email" id="email" placeholder="Email Address" />
							</div>
							<div class="4u 12u(mobilep)">
								<input type="submit" value="Sign Up" class="fit" />
							</div>
						</div>
					</form>

				</section>
{{ partial "footer" . }}