forked from mashshare/mashshare-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-afffilate.php
53 lines (43 loc) · 1.7 KB
/
page-afffilate.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
<?php
/**
* Template Name: template-page-affilate
*
* This is the template that displays full width page without sidebar
*
* @package rootstrap
*/
get_header(); ?>
<div id="page-wrap" class="container-fluid">
<div id="header-image"><!--start header-image-->
<div id="header-content" class="container"><!--start header-->
<div class="row"><!--start row-->
<div class="col-md-6">
<h1>Affilate</h1>
<h2>Earn money with directing vistor to mashshare.net. Just sign up and you’ll receive commission on each customer order you refer. </h2>
</div>
<div class="col-md-6">
<img src="<?php echo get_template_directory_uri(); ?>/images/packshot-affilate.png" alt="Packshot Affilate" />
</div>
</div><!--end row-->
</div><!--end header-->
</div><!--end header-image-->
<div class="decor-top container"><img src="<?php echo get_template_directory_uri(); ?>/images/decor_top.png" alt="blue" /></div>
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-offset-2 col-md-6 col-lg-6">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="entry">
<?php the_content(); ?>
<?php wp_link_pages(array('before' => 'Pages: ', 'next_or_number' => 'number')); ?>
</div>
</article>
<?php endwhile; endif; ?>
</div> <!-- end content -->
<div id="secondary" class="col-xs-12 col-sm-2 col-md-2 col-lg-2" style="margin-top:30px;min-width:270px;">
<div class="widget-container">
<?php dynamic_sidebar('affiliate-sidebar'); ?>
</div>
</div>
</div>
</div> <!-- end page-wrap -->
<?php get_footer(); ?>