-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
54 lines (51 loc) · 1.77 KB
/
single.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
<?php
/**
* This is the template for display all pages
*
* @package WakeMojo
*/
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<div class="logo"><a href="http://wakemojocom.wpengine.com"><img src="/wp-content/themes/wakemojo/img/logo.png"></a></div>
<div class="hero">
<?php if(get_field('page_hero_image')){ ?>
<img src="<?php the_field('page_hero_image'); ?>">
<?php }
else{ ?>
<img src="/wp-content/themes/wakemojo/img/hero-2.jpg">
<?php } ?>
</div>
<div class="green-bar">
<div class="wrap">
<h1 class="page-title"><?php the_title(); ?></h1>
</div>
</div>
<div class="page-content">
<div class="brands-loop">
<div class="wrap">
<div class="inner-wrap page">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post();
the_content();
endwhile; else: ?>
<p>Sorry, no posts matched your criteria.</p>
<?php endif; ?>
</div>
</div>
</div>
</div>
</main>
</div>
</div>
<div id="bottom-container">
<?php if(get_field('page_cta_text')){ ?>
<div class="cta">
<div class="wrap">
<h2><a href="<?php the_field('page_cta_link'); ?>"><?php the_field('page_cta_text'); ?></a></h2>
</div>
</div>
<div class="contact-us">
<a href="<?php the_field('page_cta_link'); ?>">Contact Us >></a>
</div>
<?php } ?>
<?php get_footer(); ?>