-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
34 lines (31 loc) · 1.21 KB
/
index.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
<?php get_header(); ?>
<!-- Page Header -->
<!-- Set your background image for this header on the line below. -->
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<?php $url = wp_get_attachment_url( get_post_thumbnail_id($post->ID) );?>
<header class="intro-header" style="background-image: url('<?php echo $url; ?>')">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="post-heading">
<h1><?php the_title(); ?></h1>
<h2 class="subheading"><?php the_subtitle(); ?></h2>
<span class="meta">Posted by <?php the_author(); ?> on <?php the_date(); ?></span>
</div>
</div>
</div>
</div>
</header>
<!-- Post Content -->
<article>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<?php the_content(); ?>
</div>
</div>
</div>
</article>
<?php endwhile; endif; ?>
<hr>
<?php get_footer(); ?>