mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
55 lines
1.1 KiB
PHP
55 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* Post rendering content according to caller of get_template_part.
|
|
*
|
|
* @package understrap
|
|
*/
|
|
|
|
?>
|
|
|
|
|
|
|
|
<article <?php post_class('col-sm-6 col-md-4'); ?> id="post-<?php the_ID(); ?>">
|
|
<div class="card">
|
|
<?php echo get_the_post_thumbnail( $post->ID, 'large' ); ?>
|
|
<div class="card-body">
|
|
|
|
<header class="entry-header card-title">
|
|
|
|
<?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ),
|
|
'</a></h2>' ); ?>
|
|
|
|
<?php if ( 'post' == get_post_type() ) : ?>
|
|
|
|
<div class="entry-meta">
|
|
<?php understrap_posted_on(); ?>
|
|
</div><!-- .entry-meta -->
|
|
|
|
<?php endif; ?>
|
|
|
|
</header><!-- .entry-header -->
|
|
|
|
<div class="entry-content card-text">
|
|
|
|
<?php
|
|
the_excerpt();
|
|
?>
|
|
|
|
<?php
|
|
wp_link_pages( array(
|
|
'before' => '<div class="page-links">' . __( 'Pages:', 'understrap' ),
|
|
'after' => '</div>',
|
|
) );
|
|
?>
|
|
|
|
</div><!-- .entry-content -->
|
|
|
|
<!--<footer class="entry-footer">
|
|
|
|
<?php understrap_entry_footer(); ?>
|
|
|
|
</footer> .entry-footer -->
|
|
</div>
|
|
</div>
|
|
</article><!-- #post-## -->
|