-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
43 lines (29 loc) · 900 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
38
39
40
41
42
43
<?php get_header(); ?>
<main>
<section class="section-padding">
<div class="row">
<div class="col span-8 col-margin">
<?php
if ( have_posts() ) : while ( have_posts() ) : the_post();
?>
<h2 class="post-title"><?php the_title(); ?></h2>
<ul class="post-details">
<li class="post-details-date"><?php e_svgi('calendar'); ?><?php the_time('F j\<\s\u\p\>S\<\/\s\u\p\>, Y'); ?></li>
<li class="post-details-cats"><?php e_svgi('folder'); ?><?php echo get_the_category_list(', '); ?></li>
<?php echo the_tags('<li class="post-details-tags">' . svgi('tags'), ', ', '</li>'); ?>
</ul>
<?php
// Content
the_content();
?>
<?php endwhile; else: ?>
<p>Sorry, no posts matched your criteria.</p>
<?php endif; ?>
</div>
<div class="col span-4">
<?php get_sidebar('blog'); ?>
</div>
</div>
</section>
</main>
<?php get_footer(); ?>