-
Notifications
You must be signed in to change notification settings - Fork 0
/
single-events.php
executable file
·76 lines (72 loc) · 2.65 KB
/
single-events.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
<?php get_header(); ?>
<div class="title">
<h1><?php _e('Upcoming Events', 'sonsofcharity'); ?></h1>
</div>
<div class="breadcrumbs" xmlns:v="http://rdf.data-vocabulary.org/#">
<?php if(function_exists('bcn_display'))
{
bcn_display();
}?>
</div>
<div id="main">
<?php while (have_posts()) : the_post(); ?>
<article <?php post_class(); ?> id="post-<?php the_ID(); ?>">
<div class="post-holder">
<?php if ( has_post_thumbnail() ) : ?>
<div class="image">
<a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail( 'large' ); ?>
</a>
</div>
<?php endif; ?>
<div class="meta">
<span class="caption"><?php _e('START', 'sonsofcharity'); ?></span>
<time>
<?php the_field('event_start_date') ?>
</time>
</div>
<?php if ( get_field( 'event_end_date' ) ) : ?>
<div class="meta">
<span class="caption"><?php _e('END', 'sonsofcharity'); ?></span>
<time>
<?php the_field('event_end_date') ?>
</time>
</div>
<?php endif; ?>
<?php if ( $text = get_field( 'event_location' ) ) : ?>
<div class="meta">
<address><i class="fa fa-map-marker"></i><?php echo $text; ?></address>
</div>
<?php endif; ?>
<?php if ( $text = get_field( 'event_tel' ) ) : ?>
<div class="meta">
<i class="fa fa-phone"></i></i><?php echo $text; ?>
</div>
<?php endif; ?>
<?php if ( $text = get_field( 'event_email') ) : ?>
<div class="meta">
<i class="fa fa-envelope"></i><a href="mailto:<?php echo $text; ?>" class="email"><?php echo $text; ?></a>
</div>
<?php endif; ?>
<?php if ( get_field( 'register_url' ) ) : ?>
<div class="meta">
<a href="<?php the_field( 'register_url' ); ?>" class="btn btn-yellow-border" target="<?php the_field( 'register_location' ); ?>"><?php _e('Register Today', 'sonsofcharity'); ?></a>
</div>
<?php endif; ?>
<div class="socials">
<h3><?php _e('SHARE THIS EVENT', 'sonsofcharity'); ?></h3>
<span class='st_facebook_large' st_url='<?php the_permalink(); ?>' st_title='<?php the_title(); ?>'></span>
<span class='st_twitter_large' st_url='<?php the_permalink(); ?>' st_title='<?php the_title(); ?>'></span>
<span class='st_linkedin_large' st_url='<?php the_permalink(); ?>' st_title='<?php the_title(); ?>'></span>
<span class='st_instagram_large' st_url='<?php the_permalink(); ?>' st_title='<?php the_title(); ?>'></span>
</div>
</div>
<div class="text-content">
<h1><?php the_title(); ?></h1>
<?php the_content(); ?>
</div>
</article>
<?php get_template_part('blocks/pager-event', get_post_type()); ?>
<?php endwhile; ?>
</div>
<?php get_footer(); ?>