-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
40 lines (33 loc) · 857 Bytes
/
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
31
32
33
34
35
36
37
38
39
40
<?php get_header(); ?>
<!-- Main Wrapper -->
<div id="main-wrapper">
<div class="wrapper style2">
<div class="inner">
<div class="container">
<div id="content">
<!-- Content -->
<?php
while ( have_posts() ) :
the_post();
?>
<article>
<header class="major">
<h2><?php the_title(); ?></h2>
</header>
<span class="image featured">
<?php
if ( has_post_thumbnail() ) {
the_post_thumbnail( 'full', array( 'alt' => esc_attr( get_the_title() ) ) );
}
?>
</span>
<?php the_content(); ?>
</article>
<?php endwhile; ?>
</div>
</div>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>