-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuilding-old.php
89 lines (87 loc) · 3.35 KB
/
building-old.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?php
/*
Template Name: Building
*/
get_header(); ?>
<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">Building 1</h1>
<h2 class="heading2 bluetext col-lg-8"></h2>
</div>
</div>
</div>
</header>
<section class="section section1">
<div class="container-fluid">
<div class="row">
<div class="col-md-6 col-lg-7">
<div class="row">
<div class="col-xs-12">
<img src="<?php echo get_stylesheet_directory_uri(); ?>/imgs/stackingplan.svg" width="100%"/>
</div>
</div>
<div class="row">
<div class="col-xs-6 col-xs-offset-3 col-md-offset-0">
<img src="<?php echo get_stylesheet_directory_uri(); ?>/imgs/building-floorplan.png" width="100%"/>
</div>
</div>
</div>
<div class="col-md-6 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">Video</th>
<th class="bodycopy greentext">Floor Plan</th>
</tr>
</thead>
<tbody>
<tr>
<td class="bodycopy darktext">1000</td>
<td class="bodycopy darktext">4567</td>
<td><button class="btn btn-primary btn-lg">Video <img src="<?php echo get_stylesheet_directory_uri(); ?>/imgs/next.svg" width="10px"/></button></td>
<td><a class="linktext-light" href="#">Download</a></td>
</tr>
<tr>
<td class="bodycopy darktext">1000</td>
<td class="bodycopy darktext">4567</td>
<td><button class="btn btn-primary btn-lg">Video <img src="<?php echo get_stylesheet_directory_uri(); ?>/imgs/next.svg" width="10px"/</button></td>
<td><a class="linktext-light" href="#">Download</a></td>
</tr>
<tr>
<td class="bodycopy darktext">1000</td>
<td class="bodycopy darktext">4567</td>
<td><button class="btn btn-primary btn-lg">Video <img src="<?php echo get_stylesheet_directory_uri(); ?>/imgs/next.svg" width="10px"/</button></td>
<td><a class="linktext-light" href="#">Download</a></td>
</tr>
<tr>
<td class="bodycopy darktext">1000</td>
<td class="bodycopy darktext">4567</td>
<td><button class="btn btn-primary btn-lg">Video <img src="<?php echo get_stylesheet_directory_uri(); ?>/imgs/next.svg" width="10px"/</button></td>
<td><a class="linktext-light" href="#">Download</a></td>
</tr>
<tr>
<td class="bodycopy darktext">1000</td>
<td class="bodycopy darktext">4567</td>
<td><button class="btn btn-primary btn-lg">Video <img src="<?php echo get_stylesheet_directory_uri(); ?>/imgs/next.svg" width="10px"/</button></td>
<td><a class="linktext-light" href="#">Download</a></td>
</tr>
<tr>
<td class="bodycopy darktext">1000</td>
<td class="bodycopy darktext">4567</td>
<td><button class="btn btn-primary btn-lg">Video <img src="<?php echo get_stylesheet_directory_uri(); ?>/imgs/next.svg" width="10px"/</button></td>
<td><a class="linktext-light" href="#">Download</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<?php get_footer(); ?>