-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.php
71 lines (67 loc) · 2.39 KB
/
contact.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
<?php
/**
* Template Name: Contact Page
*
* @package WordPress
* @subpackage Twenty_Thirteen
* @since Twenty Thirteen 1.0
*/
get_header(); ?>
<div id="primary" class="content-area">
<div class="container">
<div class="row padded-row">
<h1 class="col-sm-6">Contact Us</h1>
<ul class="socialmedia col-sm-6">
<li><a href="https://twitter.com/FoundOpenGov" class="img-circle"><span class="genericon genericon-twitter"></span></a></li>
<li><a href="https://www.facebook.com/Opengovfoundation" class="img-circle"><span class="genericon genericon-facebook"></span></a></li>
<li><a href="https://www.youtube.com/channel/UCdSjbzPy92uMG8o03N1JC5g" class="img-circle"><span class="genericon genericon-youtube"></span></a></li>
<li><a href="<?php bloginfo('rss2_url'); ?>" class="img-circle"><span class="genericon genericon-feed"></span></a></li>
</ul>
</div>
</div>
<div class="row padded-row map">
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-8 col-md-offset-4 contact">
<div class="col-md-2 icon">
<img src="/wp-content/themes/opengovfoundation-theme/images/icon_contact_white.png" alt="">
</div>
<div class="col-md-4 col-sm-6">
<h3>Physical:</h3>
<p>1875 Connecticut Ave NW<br>
10th Floor<br>
Washington DC 20009<br>
<a href="https://www.google.com/maps/dir//1875+Connecticut+Ave+NW,+Washington,+DC+20009/">Map directions</a></p>
</div>
<div class="col-md-6 col-sm-6">
<h3>Nearest Metro:</h3>
<p><span style="color:red;">●</span> Dupont Circle — North</p>
<h3 class="inline">Email:</h3>
<p class="inline"><a href="mailto:[email protected]">[email protected]</a></p><br class="small">
<h3 class="inline">Phone:</h3>
<p class="inline">760.659.0631</p>
</div>
</div>
</div>
<div class="row mobile-map">
<figure class="col-sm-12">
<img src="/wp-content/themes/opengovfoundation-theme/images/map.jpg">
</figure>
</div>
</div>
</div>
<div class="container">
<div class="row padded-row">
<div class="col-md-8">
<?php /* The loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
</div>
<div class="col-md-4">
</div>
</div>
</div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>