-
Notifications
You must be signed in to change notification settings - Fork 1
/
page.php
executable file
·30 lines (26 loc) · 1.1 KB
/
page.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
<?php get_header();if( have_posts() ) : while( have_posts() ) : the_post(); ?>
<main id="main" class="main">
<div class="main-inner">
<div id="content" class="content">
<div id="posts" class="posts-expand">
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h1 class="post-title" itemprop="name headline"><?php the_title();?></h1>
</header>
<div class="post-body">
<span itemprop="articleBody">
<p><?php the_content();?></p>
</span>
</div>
<footer class="post-footer">
<div class="post-tags"><?php the_tags('',' ','');?></div>
</footer>
</article>
</div>
</div>
</div>
</main>
<?php endwhile; ?>
<?php endif; ?>
<?php get_sidebar();?>
<?php get_footer();?>