-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
executable file
·50 lines (41 loc) · 1.21 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
<?php include 'header.php' ?>
<section id="apartment_types">
<article class="apartment_type studio">
<a href="apartment_details.php?bd=0">
<span class="type_flag">
Studio <i class="fa fa-chevron-right"></i>
</span>
</a>
</article>
<article class="apartment_type one_bd">
<a href="apartment_details.php?bd=1">
<span class="type_flag">
1 Bedroom <i class="fa fa-chevron-right"></i>
</span>
</a>
</article>
<article class="apartment_type two_bd">
<a href="apartment_details.php?bd=2">
<span class="type_flag">
2 Bedroom <i class="fa fa-chevron-right"></i>
</span>
</a>
</article>
<article class="apartment_type three_bd">
<a href="apartment_details.php?bd=3">
<span class="type_flag">
3 Bedroom <i class="fa fa-chevron-right"></i>
</span>
</a>
</article>
</section><!-- End apartment_types -->
<!-- FIXME GET BANNER TO DISPLAY UNTIL HOVER THEN HAVE IT FADE AWAY JS! -->
<section id="choose_banner" >
<span class="address"> 335 Carrol Street</span>
<span class="spaced"></span>
<span> Choose your apartment </span>
</section>
<script type="text/javascript">
myspace.enableFrontTileEffect();
</script>
<?php include 'footer.php' ?>