-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhomepage.php
36 lines (28 loc) · 1009 Bytes
/
homepage.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
<?php
/*
* Template Name: Homepage Default
*/
get_header();
?>
<section id="main" class="clearfix">
<div class="container">
<div id="content" class="site-content" role="main">
<?php /* The loop */ ?>
<?php while ( have_posts() ): the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if ( has_post_thumbnail() && ! post_password_required() ) : ?>
<div class="entry-thumbnail">
<?php the_post_thumbnail(); ?>
</div>
<?php endif; ?>
<div class="entry-content">
<?php the_content(); ?>
<?php wp_link_pages(); ?>
</div>
</div>
<?php // comment_template(); ?>
<?php endwhile; ?>
</div> <!--/#content-->
</div> <!--/container-->
</section> <!--/#main-->
<?php get_footer(); ?>