-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (83 loc) · 2.49 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
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
---
layout: default
sections:
-
name: The Couple
id: about
content: about_us.html
-
name: Gallery
id: gallery
content: gallery.html
-
name: Bridal Party
id: bridal
content: bridal_party.html
-
name: Festivities
id: events
content: festivities.html
before: festivities
background: /images/backgrounds/ravello.jpg
-
name: Travel
id: travel
content: travel.html
before: travel
background: /images/backgrounds/colleseum.jpg
-
name: Stay
id: stay
content: stay.html
before: stay
background: /images/backgrounds/naples.jpg
-
name: Ravello
id: ravello
content: location.html
before: ravello
background: /images/backgrounds/coast_map.jpg
-
name: Registry
id: registry
content: registry.html
before: registry
background: /images/backgrounds/night_boats.jpg
---
<img id="stamp" src="/images/stamp.png" />
<div id="siteContainer" class="container-fluid">
<nav class="navbar-fixed-top collapse">
<div class="expand-button btn" onclick="$('nav .hidable').toggleClass('unhide');">
<span class="fa fa-bars fa-3x"></span>
</div>
<div class="cover hidable" onmousedown="$('nav .hidable').removeClass('unhide')"></div>
<ul class="hidable">
{% for item in page.sections %}
<li><a href="#{{ item.id }}">{{ item.name }}</a></li>
{% if forloop.last %}
{% else %}
<li class="spacer">·</li>
{% endif %}
{% endfor %}
</ul>
</nav>
{% include landing.html %}
{% for item in page.sections %}
{% if item.before %}
<div class="row cutin" data-parallax="scroll" data-image-src="{{ item.background }}" data-speed="0.0">
{% include cutins.html cutin=item.before %}
</div>
{% endif %}
<section class="row" id="{{ item.id }}">
{% include {{item.content}} %}
</section>
{% endfor %}
<footer class="row">
<div class="row text-center" style="padding-top: .5em;">
<span class="col-xs-12 col-sm-10 col-sm-offset-1 col-md-8 col-md-offset-2 col-lg-6 col-lg-offset-3">A <span class="names">Gabriella & Chris</span> Production</span>
</div>
<div class="row text-center">
<span class="col-xs-8 col-xs-offset-2 col-sm-6 col-sm-offset-3 col-md-4 col-md-offset-4 credit">Photography by <a target="_blank" href="http://www.rinocordella.com/">Rino Cordella</a></span>
</div>
</footer>
</div>