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
|
<?php /** * The default template for displaying content * * @package Minileven */ ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header class="entry-header"> <?php if ( '1' == get_option( 'wp_mobile_featured_images' ) && minileven_show_featured_images() ) : ?> <div class="entry-thumbnail"> <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'jetpack' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="<?php the_ID(); ?>" class="minileven-featured-thumbnail"><?php the_post_thumbnail(); ?></a> </div><!-- .entry-thumbnail --> <?php endif; ?> <?php if ( is_sticky() ) : ?> <div class="entry-heading"> <h2 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <h3 class="entry-format"><?php _e( 'Featured', 'jetpack' ); ?></h3> <div> <?php else : ?> <h1 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h1> <?php endif; ?>
<div class="entry-meta"> <?php if ( is_singular() && is_multi_author() ) : ?> <span class="author-link"> <?php _e( 'Posted by ', 'jetpack' ); ?> <?php the_author_posts_link(); ?> </span><!-- .author-link --> <?php endif; ?> </div><!-- .entry-meta --> </header><!-- .entry-header -->
<div class="entry-content"> <?php if ( '1' == get_option( 'wp_mobile_excerpt' ) && ( is_home() || is_search() || is_archive() ) ) : ?> <?php echo minileven_excerpt( 300 ); ?> <?php else : ?> <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'jetpack' ) ); ?> <?php endif; ?> <?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'jetpack' ) . '</span>', 'after' => '</div>' ) ); ?> </div><!-- .entry-content -->
<footer class="entry-meta"> <?php if ( 'post' == get_post_type() ) : ?> <?php minileven_posted_on(); ?> <?php endif; ?> <?php if ( comments_open() ) : ?> <span class="comments-link"><?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'jetpack' ) . '</span>', __( '<b>1</b> Reply', 'jetpack' ), __( '<b>%</b> Replies', 'jetpack' ) ); ?></span> <?php endif; // End if comments_open() ?> <?php edit_post_link( __( 'Edit', 'jetpack' ), '<span class="edit-link">', '</span>' ); ?> </footer><!-- #entry-meta --> </article><!-- #post-<?php the_ID(); ?> -->
<?php if ( is_single() ) : ?> <nav id="nav-single"> <h3 class="assistive-text"><?php _e( 'Post navigation', 'jetpack' ); ?></h3> <span class="nav-previous"><?php previous_post_link( '%link', __( '« Previous', 'jetpack' ) ); ?></span> <span class="nav-next"><?php next_post_link( '%link', __( 'Next »', 'jetpack' ) ); ?></span> </nav><!-- #nav-single --> <?php endif; ?>
<?php comments_template( '', true ); ?>
|