-
Notifications
You must be signed in to change notification settings - Fork 0
/
single.php
41 lines (36 loc) · 1 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
<?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>
</div>
</div>
</div>
</div>
</header>
<section class="content">
<div class="container">
<div class="eight columns">
<?php the_content(); ?>
</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(); ?>