forked from mindctrl/alienship
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-marketing.php
executable file
·49 lines (33 loc) · 1.25 KB
/
page-marketing.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
<?php
/**
* Template Name: Marketing
* The template for displaying a marketing landing page.
*
* @package Alien Ship
* @since .93
*/
get_header( 'marketing' ); ?>
<div class="container-narrow">
<div class="masthead">
<?php get_template_part( '/inc/parts/menu', 'marketing-top' ); ?>
<h3 id="marketing-header" class="muted"><?php echo apply_filters( 'alienship_marketing_page_header_name', get_bloginfo('name') ); ?></h3>
</div><!-- /.masthead -->
<hr>
<div class="jumbotron">
<?php while ( have_posts() ) : the_post();
get_template_part( '/inc/parts/content', 'marketing-page' );
endwhile; ?>
</div><!-- /.jumbotron -->
<hr>
<div id="marketing-widgets-top-row" class="row-fluid marketing">
<div id="marketing-top-wrap" class="span12">
<?php dynamic_sidebar( 'marketingwidgets-1' ); ?>
</div>
</div><!-- /.marketing -->
<div id="marketing-widgets-bottom-row" class="row-fluid marketing">
<div id="marketing-bottom-wrap" class="span12">
<?php dynamic_sidebar( 'marketingwidgets-2' ); ?>
</div>
</div><!-- /.marketing -->
</div><!-- /.container-narrow -->
<?php get_footer( 'marketing' ); ?>