-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
37 lines (31 loc) · 1006 Bytes
/
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
<?php
/**
* @package WordPress
* @subpackage Default_Theme
*/
get_header();
?>
<main>
<section id="blog-single" class="margin">
<div class="container">
<div class="row">
<div class="col-12">
<?php if (have_posts()) :
while (have_posts()) : the_post(); ?>
<article id="blog-post" itemscope="" itemtype="http://schema.org/BlogPosting">
<h1 itemprop="name headline"><?php the_title(); ?></h1>
<time datetime="<?php the_time('F jS, Y') ?>" itemprop="datePublished"><small><?php the_time('F jS, Y') ?></small></time>
<div class="content" itemprop="articleBody"><?php the_content(); ?></div>
</article>
<div class="navigation">
<div class="alignleft"><?php previous_post_link('« %link') ?></div>
<div class="alignright"><?php next_post_link('%link »') ?></div>
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>
</div>
</div>
</section>
</main>
<?php get_footer(); ?>