-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpage-contact.php
More file actions
93 lines (71 loc) · 2.45 KB
/
page-contact.php
File metadata and controls
93 lines (71 loc) · 2.45 KB
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
90
91
92
93
<?php
/**
* Page: Contact
*
* @package obsub
*/
get_header(); ?>
<?php the_post(); ?>
<section id="about-intro" class="about-intro page-section">
<div class="intro-content section-content">
<div class="outer-container">
<div class="os-row">
<div class="os-column os-span-10-md os-span-6-lg os-offset-1-md os-offset-2-lg">
<?php the_content() ?>
</div>
</div>
</div>
</div>
</section>
<div class="outer-container">
<div class="os-row">
<div class="os-column os-span-10-md os-span-6-lg os-offset-1-md os-offset-2-lg">
<address class="h1">
400 Third Avenue, Suite 3<br/>Brooklyn, New York 11215<br/>
<a href="tel:+12128639194">+1 212 863 9194</a><br/>
<a href="mailto:[email protected]" class="muted-link">[email protected]</a>
</address>
</div>
</div>
<div class="os-row mt-4">
<div class="os-column os-span-5-md os-span-4-lg os-offset-1-md os-offset-2-lg">
<p>
<em>New Business</em><br/>
<a href="mailto:[email protected]" class="muted-link">[email protected]</a>
</p>
</div>
<div class="os-column os-span-5-md os-span-4-lg">
<p>
<em>Employment</em><br/>
<a href="mailto:[email protected]" class="muted-link">[email protected]</a>
</p>
</div>
</div>
<div class="grid mt-5">
<img src="<?php echo os_path('contact-photo-1-bw.jpg', 'contact'); ?>"
width="2048" height="1200"
class="grid-item" />
<img src="<?php echo os_path('contact-photo-2-bw.jpg', 'contact'); ?>"
width="822" height="1200"
class="grid-item span-5-md" />
<img src="<?php echo os_path('contact-photo-3-bw.jpg', 'contact'); ?>"
width="1172" height="1200"
class="grid-item span-7-md" />
<img src="<?php echo os_path('contact-photo-4-bw.jpg', 'contact'); ?>"
width="2048" height="1200"
class="grid-item" />
<img src="<?php echo os_path('contact-photo-5-bw.jpg', 'contact'); ?>"
width="2048" height="1200"
class="grid-item" />
<img src="<?php echo os_path('contact-photo-6-bw.jpg', 'contact'); ?>"
width="1002" height="1200"
class="grid-item span-6-md" />
<img src="<?php echo os_path('contact-photo-7-bw.jpg', 'contact'); ?>"
width="883" height="1057"
class="grid-item span-6-md" />
<img src="<?php echo os_path('contact-photo-8-bw.jpg', 'contact'); ?>"
width="2048" height="1200"
class="grid-item" />
</div>
</div>
<?php get_footer(); ?>