-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsingle-briefing.php
77 lines (73 loc) · 2.06 KB
/
single-briefing.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
77
<?php get_header(); ?>
<?php if(have_posts()) : the_post(); ?>
<article id="content" class="single-post">
<header class="single-post-header" class="clearfix">
<div class="container">
<div class="twelve columns">
<?php the_category(); ?>
<h1><?php the_title(); ?></h1>
</div>
</div>
</header>
<?php
if(jeo_has_marker_location()) {
?>
<section id="featured-media" class="row">
<div class="container">
<div class="twelve columns">
<div style="height:400px;">
<?php jeo_map(); ?>
</div>
</div>
</div>
</section>
<?php
}
?>
<?php get_template_part('section', 'related-datasets'); ?>
<section class="content">
<div class="container">
<div class="eight columns">
<div class="post-content">
<?php the_content(); ?>
</div>
<?php
wp_link_pages( array(
'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'jeo' ) . '</span>',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
) );
?>
<?php comments_template(); ?>
</div>
<div class="three columns offset-by-one">
<aside id="sidebar">
<ul class="widgets">
<li class="widget share-widget">
<div class="share clearfix">
<ul>
<li>
<div class="fb-like" data-href="<?php the_permalink(); ?>" data-layout="box_count" data-show-faces="false" data-send="false"></div>
</li>
<li>
<a href="https://twitter.com/share" class="twitter-share-button" data-url="<?php the_permalink(); ?>" data-lang="en" data-count="vertical">Tweet</a>
</li>
<li>
<div class="g-plusone" data-size="tall" data-href="<?php the_permalink(); ?>"></div>
</li>
</ul>
</div>
</li>
<li class="widget">
<?php opendev_summary(); ?>
</li>
<?php dynamic_sidebar('briefing'); ?>
</ul>
</aside>
</div>
</div>
</section>
</article>
<?php endif; ?>
<?php get_footer(); ?>