-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
31 lines (24 loc) · 774 Bytes
/
index.php
File metadata and controls
31 lines (24 loc) · 774 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
<?php get_header(); ?>
<main id="main" class="site-main" role="main">
<?php do_action( 'pioneer_main_start' ); ?>
<div class="container">
<?php do_action( 'pioneer_before_content' ); ?>
<h1>Welcome to Pioneer Theme</h1>
<?php if ( have_posts() ) : ?>
<?php
while ( have_posts() ) :
the_post();
?>
<?php do_action( 'pioneer_post_before', get_post() ); ?>
<article <?php post_class(); ?>>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php the_excerpt(); ?>
</article>
<?php do_action( 'pioneer_post_after', get_post() ); ?>
<?php endwhile; ?>
<?php endif; ?>
<?php do_action( 'pioneer_after_content' ); ?>
</div>
<?php do_action( 'pioneer_main_end' ); ?>
</main>
<?php get_footer(); ?>