123456789101112131415161718192021222324 |
- <?php
- /**
- * Template part for displaying aside posts.
- *
- */
- ?>
- <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <div class="entry-content">
- <?php the_content(''); ?>
- </div><!-- .entry-content -->
-
- <footer class="entry-footer">
- <div class="index-entry-meta">
- <?php popper_index_posted_on(); ?>
- </div><!-- .entry-meta -->
- </footer>
- </article><!-- #post-## -->
|