-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.php
More file actions
executable file
·73 lines (46 loc) · 2.21 KB
/
Copy pathteam.php
File metadata and controls
executable file
·73 lines (46 loc) · 2.21 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
/**
* Team Template
*
* This is the team template. It is used to display singular views of team member profiles. This template works with the DevPress Team plugin.
*
* @package Murmur
* @subpackage Functions
* @version 0.1.0
* @author Tung Do <tung@devpress.com>
* @copyright Copyright (c) 2012, Tung Do
* @link http://devpress.com/themes/murmur
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*/
get_header(); // Loads the header.php template. ?>
<?php do_atomic( 'before_content' ); // murmur_before_content ?>
<?php if( hybrid_get_setting( 'murmur_site_description_extended' ) ) { ?>
<div id="site-description-extended">
<?php echo hybrid_get_setting( 'murmur_site_description_extended' ); ?>
</div><!-- #site-description-extended -->
<?php } ?>
<div id="content">
<?php do_atomic( 'open_content' ); // murmur_open_content ?>
<div class="hfeed">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php do_atomic( 'before_entry' ); // murmur_before_entry ?>
<div id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
<?php do_atomic( 'open_entry' ); // murmur_open_entry ?>
<?php echo apply_atomic_shortcode( 'entry_title', '[entry-title]' ); ?>
<div class="entry-content">
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'murmur' ) ); ?>
<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'murmur' ), 'after' => '</p>' ) ); ?>
<?php echo apply_atomic_shortcode( 'page_edit', '[entry-edit-link before="<p>" after="</p>"]'); ?>
</div><!-- .entry-content -->
<?php do_atomic( 'close_entry' ); // murmur_close_entry ?>
</div><!-- .hentry -->
<?php get_sidebar( 'after-singular' ); // Load sidebar-after-singular.php template ?>
<?php endwhile; ?>
<?php endif; ?>
</div><!-- .hfeed -->
<?php do_atomic( 'close_content' ); // murmur_close_content ?>
<?php get_template_part( 'loop-nav' ); // Loads the loop-nav.php template. ?>
</div><!-- #content -->
<?php do_atomic( 'after_content' ); // murmur_after_content ?>
<?php get_footer(); // Loads the footer.php template. ?>