-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
42 lines (25 loc) · 656 Bytes
/
Copy pathindex.php
File metadata and controls
42 lines (25 loc) · 656 Bytes
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
<?php
/**
* The template for displaying all single posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package wftowptheme
*/
get_header();
?>
<main id="primary" class="site-main">
<div class="s-content">
<div class="c-content">
<?php if( have_posts() ):
while( have_posts() ): the_post(); ?>
<p><?php the_content(); ?></p>
<?php
endwhile;
endif;
?>
</div>
</div>
</main><!-- #main -->
<?php
get_footer();