-
Notifications
You must be signed in to change notification settings - Fork 33
/
single.php
50 lines (45 loc) · 1.38 KB
/
single.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
<?php get_header(); ?>
<?php if(have_posts()) : the_post(); ?>
<?php jeo_map(); ?>
<article id="content" class="single-post">
<header class="single-post-header" class="clearfix">
<div class="container">
<div class="eight columns">
<?php the_category(); ?>
<h1><?php the_title(); ?></h1>
</div>
<div class="three columns offset-by-one">
<div class="post-meta">
<p class="author"><span class="lsf"></span> <?php _e('by', 'jeo'); ?> <?php the_author(); ?></p>
<p class="date"><span class="lsf"></span> <?php the_date(); ?></p>
<?php the_tags('<p class="tags"><span class="lsf"></span> ', ', ', '</p>'); ?>
</div>
</div>
</div>
</header>
<section class="content">
<div class="container">
<div class="eight columns">
<?php the_content(); ?>
<?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">
<?php dynamic_sidebar('post'); ?>
</ul>
</aside>
</div>
</div>
</section>
</article>
<?php endif; ?>
<?php get_footer(); ?>