-
Notifications
You must be signed in to change notification settings - Fork 1
/
page-map-counselor.php
61 lines (42 loc) · 1.12 KB
/
page-map-counselor.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
<?php
/*
Template Name: Map - Counselor
*/
get_header();
?>
<?php the_showcase(); ?>
<div class="page-title group">
<div class="wrap">
<div class="quarter"> </div>
<div class="three-quarter">
<h1><?php the_title() ?></h1>
</div>
</div>
</div>
<div class="wrap group two-column">
<div class="quarter left-menu">
<?php left_menu_display(); ?>
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('sidebar-generic') ) : ?><!-- no sidebar --><?php endif; ?>
</div>
<div class="three-quarter">
<?php
while ( have_posts() ) : the_post(); ?>
<div class="entry-content">
<?php the_content(); ?>
</div>
<?php
endwhile;
?>
<div class="map-container">
<div id="map-counselor" style="width: 100%; background-color:#898989; height: 500px;"></div>
<div id="map-info">
<p>Click on your state to see your counselor or learn about <a href="/visits">upcoming events</a>.</p>
</div>
</div>
<?php the_tab_box(); ?>
</div>
</div>
<div class="wrap">
<?php the_photo_grid(); ?>
</div>
<?php get_footer(); ?>