Created
October 15, 2015 18:11
-
-
Save seandogg/dea34419f7655ab8acca to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @package Blink | |
*/ | |
?> | |
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> | |
<div class="post-grid-content"> | |
<a href="<?php the_permalink(); ?>" class="item-link"></a> | |
<div class="text-container"> | |
<header class="entry-header"> | |
<?php get_template_part( 'partials/entry', 'sticky' ); ?> | |
<?php the_title( sprintf( '<h1 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h1>' ); ?> | |
</header><!-- .entry-header --> | |
<footer class="entry-footer"> | |
<?php blink_posted_on(); ?> | |
<?php blink_entry_footer(); ?> | |
</footer><!-- .entry-footer --> | |
</div> | |
<div class="overlay"></div> | |
</div> | |
</article><!-- #post-## --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment