-
Notifications
You must be signed in to change notification settings - Fork 0
/
template-team.php
50 lines (35 loc) · 912 Bytes
/
template-team.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
<?php
/**
* The Team Listing template.
*
* TEMPLATE NAME: Team Listing
* @package lightseek
*/
get_header();
get_template_part( 'modules/content', 'page-title' );
do_action('lightseek_template_start');
?>
<div class="row">
<div class="col-md-24">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<h1 class="entry-title"><?php the_title(); ?></a></h1>
</header>
<div class="row">
<div class="col-md-14">
<div class="entry-content">
<?php the_content() ?>
</div>
</div>
</div>
</article>
<?php endwhile ?>
<?php endif ?>
</div>
</div>
<?php
get_template_part( 'modules/content', 'team-listing' );
do_action('lightseek_template_end');
get_footer();