forked from zoephilipps/scratch-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.php
More file actions
executable file
·41 lines (27 loc) · 789 Bytes
/
home.php
File metadata and controls
executable file
·41 lines (27 loc) · 789 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
<?php get_header(); ?>
<main>
<p class="center">This is the home.php file</p>
<section class="wrap hpad clearfix">
<?php if (have_posts()): ?>
<?php while (have_posts()): the_post(); ?>
<article id="post-<?php the_ID(); ?>"
<?php post_class(); ?>
itemscope itemtype="http://schema.org/BlogPosting">
<header>
<a href="<?php the_permalink(); ?>"
title="<?php the_title_attribute(); ?>">
<h2 itemprop="headline">
<?php the_title(); ?>
</h2>
</a>
</header>
<div itemprop="articleBody">
<?php the_content(); ?>
</div>
</article>
<?php endwhile; else: ?>
<p>No posts here.</p>
<?php endif; ?>
</section>
</main>
<?php get_footer(); ?>