Sha256: c2b382061ca5c6b8c7b5fc922d7549957162dce3bd99c3c1d4b3292ccbeface4
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
Contents
<?php /** * The template for displaying posts in the Link post format * * @category Theme * @package [bootstrap] * @author [Your Name] * @copyright 2012 [Your Name] */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header><?php _e( 'Link', 'bootstrap' ); ?></header> <div class="entry-content"> <?php the_content( __( 'Continue reading', 'bootstrap' ) ); ?> </div> <footer class="entry-meta"> <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'bootstrap' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php echo get_the_date(); ?></a> <?php if ( comments_open() ) : ?> <div class="comments-link"> <?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'bootstrap' ) . '</span>', __( '1 Reply', 'bootstrap' ), __( '% Replies', 'bootstrap' ) ); ?> </div> <?php endif; // comments_open() ?> <?php edit_post_link( __( 'Edit', 'bootstrap' ), '<span class="edit-link">', '</span>' ); ?> </footer> </article>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
wordpress-starter-0.3 | templates/bootstrap/content-link.php |