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