-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpartners.php
28 lines (25 loc) · 827 Bytes
/
partners.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
<?php
/*
* Template Name: Partners Page
* Template Post Type: page
*/
?>
<?php get_header(); ?>
<div class="wrapper" id="wrapper-index">
<div id="content" class="container">
<div class="row">
<div class="col-md-8">
<?php
if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<article>
<header>
<p>Our Partners in<?php the_title('<span><h2>', '</h2></span>') ?></p>
</header>
<p>We are currently compiling and updating the data of our partners in <?php the_title(); ?> . Please check again later to see our partners in <?php the_title(); ?>.</p>
</article>
<?php endwhile; endif; ?>
</div><!-- #primary -->
</div><!-- .row -->
</div><!-- Container end -->
</div><!-- Wrapper end -->
<?php get_footer(); ?>