-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuilding.php
65 lines (55 loc) · 1.82 KB
/
building.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
<?php
/*
Template Name: Building
*/
get_header(); ?>
<style type="text/css">
</style>
<main class="building page-main">
<header class="page-header">
<div class="container-fluid">
<div class="page-heading">
<div class="row">
<h1 class="heading1 col-lg-8" id="page_title">Building One</h1>
<h2 class="heading2 col-lg-8" id="page_address">2333 Waukegan Rd.</h2>
</div>
</div>
</div>
</header>
<section class="section section1">
<div class="container-fluid">
<h2 class="heading2 bluetext col-lg-8"><?php the_field('building_header_subheadline'); ?></h2>
<div class="row">
<div class="col-lg-7">
<div class="row">
<div class="col-xs-12">
<div id="map" class="building-rendering">
<img src="imgs/stacking-plan-01.svg">
</div>
</div>
</div>
<div class="row">
</div>
</div>
<div class="col-lg-5">
<div class="container">
<table class="table" style="vertical-align: center;">
<thead>
<tr>
<th class="bodycopy greentext">Suite</th>
<th class="bodycopy greentext">SF</th>
<th class="bodycopy greentext">Floor Plan</th>
</tr>
</thead>
<tbody id="amenities_list">
</table>
</div>
</div>
</div>
</div>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="<?php echo get_stylesheet_directory_uri(); ?>/interactive-building/helpers/raphael-min.js" type="text/javascript" charset="utf-8"></script>
<script src="<?php echo get_stylesheet_directory_uri(); ?>/interactive-building/helpers/building.js" type="text/javascript" charset="utf-8"></script>
<script src="<?php echo get_stylesheet_directory_uri(); ?>/interactive-building/helpers/dbconnector.js" type="text/javascript" charset="utf-8"></script>
<?php get_footer(); ?>