-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
46 lines (34 loc) · 1.02 KB
/
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
41
42
43
44
45
46
<?php
/**
* The page template for our theme.
*
* This template is used to display page content.
*
* @package Response
* @since Response 1.0
*
*/
get_header(); ?>
<?php if ( has_post_thumbnail()) { $thumb = wp_get_attachment_image_src(get_post_thumbnail_id(), 'banner'); } ?>
<?php if ( has_post_thumbnail()) { ?>
<div class="banner" style="background-image: url(<?php if (has_post_thumbnail()) { echo $thumb[0]; } ?>);"><span class="banner-img"><?php the_post_thumbnail( 'banner' ); ?></span></div>
<?php } ?>
<!-- BEGIN #content -->
<div id="content">
<!-- BEGIN .row -->
<div class="row">
<!-- BEGIN .ten columns -->
<div class="ten columns">
<?php get_template_part( 'loop', 'page' ); ?>
<!-- END .ten columns -->
</div>
<!-- BEGIN .six columns -->
<div class="six columns">
<?php get_sidebar('left'); ?>
<!-- END .six columns -->
</div>
<!-- END .row -->
</div>
<!-- END #content -->
</div>
<?php get_footer(); ?>