-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-2.php
99 lines (73 loc) · 2.97 KB
/
page-2.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?php
/*
Template Name: Custom Home Page
*/
?>
<?php get_header('home'); ?>
<div id="content">
<div id="inner-content" class="wrap clearfix">
<div id="main" role="main">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<article class="eightcol first clearfix" id="post-<?php the_ID(); ?>" <?php post_class( 'clearfix' ); ?> role="article" itemscope itemtype="http://schema.org/BlogPosting">
<header class="article-header">
<h2 class="home">Reverend John Drabik</h2>
<h1 class="page-title home"><?php the_title(); ?></h1>
</header>
<section class="entry-content clearfix" itemprop="articleBody">
<?php the_content(); ?>
</section>
<footer class="article-footer">
<p class="clearfix"><?php the_tags( '<span class="tags">' . __( 'Tags:', 'bonestheme' ) . '</span> ', ', ', '' ); ?></p>
</footer>
</article>
<?php endwhile; else : ?>
<article id="post-not-found" class="hentry clearfix">
<header class="article-header">
<h1><?php _e( 'Oops, Post Not Found!', 'bonestheme' ); ?></h1>
</header>
<section class="entry-content">
<p><?php _e( 'Uh Oh. Something is missing. Try double checking things.', 'bonestheme' ); ?></p>
</section>
<footer class="article-footer">
<p><?php _e( 'This is the error message in the page-custom.php template.', 'bonestheme' ); ?></p>
</footer>
</article>
<?php endif; ?>
</div>
<div class="fourcol clearfix">
<img id="revimg" src="http://lorempixel.com/g/200/500">
</div>
</div>
<div id="services">
<div class="overlay"></div>
<div class="wrap">
<h3>Services</h3>
<div class="quarter">
<img src="http://sam.local:5757/wp-content/uploads/2014/03/wedding-officiant-chicago.png">
<h5>Personally <br>Designed Ceremony</h5>
</div>
<div class="quarter">
<img src="http://sam.local:5757/wp-content/uploads/2014/03/wedding-officiant-chicago-1.png">
<h5>One On One <br>Meetings</h5>
</div>
<div class="quarter last clear">
<img src="http://sam.local:5757/wp-content/uploads/2014/03/wedding-officiant-chicago-2.png">
<h5>Venue Site <br>Inspection</h5>
</div>
<div class="quarter last" id="hidden-q">
<img src="http://sam.local:5757/wp-content/uploads/2014/03/wedding-officiant-chicago-2.png">
<h5>Religious & Secular <br>Options</h5>
</div>
<div class="quarter last">
<img src="http://sam.local:5757/wp-content/uploads/2014/03/wedding-officiant-chicago-3.png">
<h5>Rehearsal <br>Ceremony</h5>
</div>
<div class="quarter last">
<img src="http://sam.local:5757/wp-content/uploads/2014/03/wedding-officiant-chicago-4.png">
<h5>Wedding <br>Ceremony</h5>
</div>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>