-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
67 lines (58 loc) · 1.59 KB
/
index.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
<?php
/* Template Name: index
*/
get_header();
?>
<div class="container-fluid text-light section">
<div class = "container">
<div class = 'row'>
<div class="col-lg-12">
<div id = "mainLogo">
<h3>
<img style="width: 150px;" src ="<?php echo ASSETS_PATH; ?>/images/new-logos/VG3-02-logo.png"
alt="VistaGreen BUILDERS, INC." />
<br>
<strong>VISTAGREEN<br>GROUP</strong>
</h3>
</div>
</div>
<div class="col-lg-6">
<a href="<?php echo(site_url()) ?>/index.php/vbi/">
<div class = "bannerCells" id = "vbi">
<img src="<?php echo ASSETS_PATH; ?>/images/new-logos/vbi-logo.png"
alt="VistaGreen CORPORATION" width = "500px"/>
</div>
</a>
<br><br>
<a href = "">
<div class = "bannerCells" id = "">
<div class = "text">
<b class = "header">VISTAGREEN REAL ESTATE<br></b>
<b class = "subHeader">COMING SOON!</b>
</div>
</div>
</a>
</div>
<div class="col-lg-6">
<a href="<?php echo(site_url()) ?>/index.php/vc/">
<div class = "bannerCells" id = "vc">
<img src="<?php echo ASSETS_PATH; ?>/images/new-logos/vistacorp-logo-2.png"
alt="VistaGreen CORPORATION" width = "500px"/>
</div>
</a>
<br><br>
<a href = "">
<div class = "bannerCells" id = "vqo">
<div class = "text">
<b class = "header">VQO FOUNDATION<br></b>
<b class = "subHeader">COMING SOON!</b>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
<?php
get_footer();
?>