-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwhere-we-meet.php
executable file
·25 lines (21 loc) · 1018 Bytes
/
where-we-meet.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
<?php
/*
Template Name: Where We Meet
*/
?>
<div class="page__wrap <?php if (has_post_thumbnail()) { echo ' page__image'; } ?>">
<?php while (have_posts()) : the_post(); ?>
<div class="page__title"><h1><?php echo roots_title(); ?></h1></div>
<?php get_template_part('templates/content', 'page'); ?>
<?php if( get_field('location') ) {
$location = get_field('location');
?>
<div class="acf-map--mobile">
<img src="http://maps.googleapis.com/maps/api/staticmap?center=<?php echo $location['lat']; ?>,<?php echo $location['lng']; ?>&markers=<?php echo $location['lat']; ?>,<?php echo $location['lng']; ?>&zoom=14&size=320x300&sensor=FALSE" />
</div>
<div class="acf-map acf-map--tablet">
<div class="marker" data-lat="<?php echo $location['lat']; ?>" data-lng="<?php echo $location['lng']; ?>"></div>
</div>
<?php } ?>
<?php endwhile; ?>
</div>