-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.page.tmpl
63 lines (53 loc) · 2.8 KB
/
home.page.tmpl
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
{{template "base" .}}
{{define "content"}}
<div id="main-carousel" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#main-carousel" data-slide-to="0" class="active"></li>
<li data-target="#main-carousel" data-slide-to="1"></li>
<li data-target="#main-carousel" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="/static/images/woman-laptop.png" class="d-block w-100" alt="Woman and laptop">
<div class="carousel-caption d-none d-md-block">
<h5>First slide label</h5>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
<div class="carousel-item">
<img src="/static/images/tray.png" class="d-block w-100" alt="Tray with coffee">
<div class="carousel-caption d-none d-md-block">
<h5>Second slide label</h5>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
<div class="carousel-item">
<img src="/static/images/outside.png" class="d-block w-100" alt="Outside">
<div class="carousel-caption d-none d-md-block">
<h5>Third slide label</h5>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col">
<h1 class="text-center mt-4">Welcome to Fort Smythe Bed and Breakfast</h1>
<p>
Your home away form home, set on the majestic waters of the Atlantic Ocean, this will be a vacation to remember.
Your home away form home, set on the majestic waters of the Atlantic Ocean, this will be a vacation to remember.
Your home away form home, set on the majestic waters of the Atlantic Ocean, this will be a vacation to remember.
Your home away form home, set on the majestic waters of the Atlantic Ocean, this will be a vacation to remember.
Your home away form home, set on the majestic waters of the Atlantic Ocean, this will be a vacation to remember.
Your home away form home, set on the majestic waters of the Atlantic Ocean, this will be a vacation to remember.
</p>
</div>
</div>
<div class="row">
<div class="col text-center">
<a href="/search-availability" class="btn btn-success">Make Reservation Now</a>
</div>
</div>
</div>
{{end}}