-
Notifications
You must be signed in to change notification settings - Fork 1
/
front-page.php
68 lines (68 loc) · 3.1 KB
/
front-page.php
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
<?php get_header(); ?>
<div class="content-area container" id="primary" role="main">
<div class="row">
<div class="col-md-12">
<?php //wp_get_attachment_image( 4, 'large', false, $default_attr ); ?>
</div>
</div>
<div class="row">
<div class="col-md-12">
<p>Great Plains Landscaping & Design delivers unparalleled craftsmanship in landscape design, construction and maintenance at reasonable prices. We are dedicated to provide our customer with prompt and professional customer service. Our team believes in a strong client relationship built on working together, trust and understanding the desired outdoor spaces.</p>
</div>
</div>
<div class="row front-page">
<div class="col-md-4 col-sm-6">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/vl0nmm1aVtA"></iframe>
</div>
</div>
<div class="col-md-4 col-sm-6">
<img src="<?php echo get_template_directory_uri(); ?>/img/epoxy.jpg" alt="test" class="img-responsive" />
</div>
<div class="col-md-4 col-sm-12">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/lEp5e9L7wi0"></iframe>
</div>
</div>
</div>
<div class="row gallery-group">
<h2>View some of our galleries!</h2>
<div class="col-md-3 col-sm-6 col-xs-6">
<div class="hovereffect">
<img class="img-responsive" src="<?php echo get_template_directory_uri(); ?>/img/patiowalkway.jpg" alt="">
<div class="overlay">
<h2>Gallery Name</h2>
<a class="info" href="<?php echo $permalink = get_permalink(132); ?>">link here</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="hovereffect">
<img class="img-responsive" src="<?php echo get_template_directory_uri(); ?>/img/walls.jpg" alt="">
<div class="overlay">
<h2>Gallery Name</h2>
<a class="info" href="<?php echo $permalink = get_permalink(134); ?>">link here</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="hovereffect">
<img class="img-responsive" src="<?php echo get_template_directory_uri(); ?>/img/concretecurbing.jpg" alt="">
<div class="overlay">
<h2>Gallery Name</h2>
<a class="info" href="<?php echo $permalink = get_permalink(136); ?>">link here</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="hovereffect">
<img class="img-responsive" src="<?php echo get_template_directory_uri(); ?>/img/waterfeatures.jpg" alt="">
<div class="overlay">
<h2>Gallery Name</h2>
<a class="info" href="<?php echo $permalink = get_permalink(138); ?>">link here</a>
</div>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>