-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-microsite.php
87 lines (72 loc) · 2.78 KB
/
page-microsite.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
<?php
/*
Template Name: Microsite
*/
global $is_anthem;
?><!DOCTYPE html>
<!--[if IE 7]><html class="ie ie7" <?php language_attributes(); ?>><![endif]-->
<!--[if IE 8]><html class="ie ie8" <?php language_attributes(); ?>><![endif]-->
<!--[if !(IE 7) | !(IE 8) ]><!--><html <?php language_attributes(); ?>><!--<![endif]-->
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title><?php wp_title( '|', true, 'right' ); ?> Northwest Credit Union Association</title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<!--[if lt IE 9]>
<script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script>
<![endif]-->
<?php wp_head(); ?>
<link href="<?php bloginfo( "template_url" ) ?>/css/src/micro-unprefixed.css?v=1" rel="stylesheet" type="text/css">
</head>
<body <?php body_class(); ?>>
<div class="microsite-container">
<header>
<div class="wrap microsite-header">
<img src="<?php show_cmb_value( 'microsite_header' ) ?>" />
</div>
</header>
<section class="content">
<div class="grid-row">
<div class="two-third">
<?php print apply_filters( 'the_content', get_cmb_value( 'microsite_content_one' ) ); ?>
</div>
<div class="third bg-<?php show_cmb_value( 'microsite_color_one' ) ?>">
<img src="<?php show_cmb_value( 'microsite_image_one' ) ?>">
</div>
</div>
<div class="grid-row">
<div class="two-third">
<?php print apply_filters( 'the_content', get_cmb_value( 'microsite_content_two' ) ); ?>
</div>
<div class="third bg-<?php show_cmb_value( 'microsite_color_two' ) ?>">
<img src="<?php show_cmb_value( 'microsite_image_two' ) ?>">
</div>
</div>
<div class="grid-row">
<div class="two-third">
<?php print apply_filters( 'the_content', get_cmb_value( 'microsite_content_three' ) ); ?>
</div>
<div class="third bg-<?php show_cmb_value( 'microsite_color_three' ) ?>">
<img src="<?php show_cmb_value( 'microsite_image_three' ) ?>">
</div>
</div>
<div class="micro-subfooter" style="background-image: url(<?php show_cmb_value( 'microsite_subfooter_bg' ) ?>);">
<?php show_cmb_value( 'microsite_subfooter_content' ) ?>
</div>
<div class="micro-footer bg-orange text-white">
<a href="<?php show_cmb_value( 'microsite_footer_link' ); ?>" target="_blank"><img src="<?php show_cmb_value( 'microsite_footer_image' ) ?>" class="imageright" /></a>
<div class="content">
<?php show_cmb_value( 'microsite_footer_content' ) ?>
</div>
</div>
<div class="colophon">
<?php show_cmb_value( 'microsite_colophon_content' ) ?>
</div>
</section>
<footer class="footer">
</footer><!-- #colophon -->
</div>
<?php wp_footer(); ?>
</body>
</html>