-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
61 lines (37 loc) · 1.83 KB
/
page.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
54
55
56
57
58
59
60
61
<?php
/**
* Singular Template
*
* This is the default singular template. It is used when a more specific template can't be found to display
* singular views of posts (any post type).
*
* @package happystrap
* @subpackage Template
*/
get_header(); ?>
<?php get_template_part('part','breadcrumbs'); // call breadcrumb template ?>
<div class="row">
<?php do_atomic( 'open_content' ); // Open content hook ?>
<div class="hfeed span8">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php do_atomic( 'before_entry' ); // Before entry hook ?>
<div id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
<?php do_atomic( 'open_entry' ); // Open entry hook ?>
<?php echo apply_atomic( 'entry_title', the_title( '<h1 class="entry-title page-header"><a href="' . get_permalink() . '" title="' . the_title_attribute( 'echo=0' ) . '" rel="bookmark">', '</a></h1>', false ) ); ?>
<div class="entry-content">
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', hybrid_get_textdomain() ) ); ?>
<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', hybrid_get_textdomain() ), 'after' => '</p>' ) ); ?>
</div><!-- .entry-content -->
<?php do_atomic( 'close_entry' ); // Close entry hook ?>
</div><!-- .hentry -->
<?php do_atomic( 'after_entry' ); // After entry hook ?>
<?php comments_template( '/comments.php', false ); ?>
<?php endwhile; ?>
<?php endif; ?>
</div><!-- .hfeed -->
<?php do_atomic( 'close_content' ); // Close content hook ?>
<?php get_template_part( 'loop-nav' ); ?>
<?php get_template_part('part','sidebars'); // call sidebar template part ?>
</div> <!-- .row -->
<?php get_footer(); ?>