-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
46 lines (33 loc) · 1.32 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
<?php
/**
* @package WordPress
*/
get_header(); ?>
<div class="main-content-wrapper">
<div class="content-wrapper">
<main class="main" role="main">
<?php if (have_posts()): ?>
<?php while (have_posts()): the_post(); ?>
<article <?php post_class() ?> id="post-<?php the_ID(); ?>">
<?php if ( has_post_thumbnail() ) { ?>
<?php the_post_thumbnail(); ?>
<?php } ?>
<div class="content">
<h1><?php the_title(); ?></h1>
<div class="topmeta">
<span class="date"><?php echo the_time("F jS, Y"); ?></span>
</div><!--/topmeta-->
<div class="postcontent">
<?php the_content(); ?>
</div><!--/postcontent-->
</div>
</article>
<?php endwhile; ?>
<?php else: ?>
<?php get_template_part('notfound'); ?>
<?php endif; ?>
</main><!--/main-->
<?php get_sidebar(); ?>
</div><!--/content-wrapper-->
</div><!--/main-content-wrapper-->
<?php get_footer(); ?>