-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-about.php
30 lines (29 loc) · 1.05 KB
/
page-about.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
<?php Themewrangler::setup_page();get_header('splash'/***Template Name: About */); ?>
<META http-equiv="refresh" content="0;URL=/">
<section id="about">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div id="content" class="fs-grid fullscreen">
<div class="fs-row">
<div class="fs-cell fs-lg-11 fs-md-6 fs-sm-3 fs-centered">
<div class="fs-row">
<div class="fs-cell fs-lg-6 fs-md-6 fs-sm-3">
<?php the_content(); ?>
</div>
<div class="fs-cell fs-lg-6 fs-md-6 fs-sm-3 fs-right">
<div class="quotes slider">
<?php include locate_template('parts/splash/quotes.php' );?>
</div>
</div>
<hr class="invisible">
<div class="fs-cell fs-lg-12 fs-md-6 fs-sm-3 fs-centered">
<div class="brands slider">
<?php include locate_template('parts/splash/brands.php' );?>
</div>
</div>
</div>
</div>
</div>
</div>
<?php endwhile; endif; ?>
</section>
<?php get_footer(); ?>