| 1 |
<?php |
| 2 |
/** |
| 3 |
* This template contains the part for a post-format imgae on /friends/. |
| 4 |
* |
| 5 |
* @version 1.0 |
| 6 |
* @package Friends |
| 7 |
*/ |
| 8 |
|
| 9 |
$template_loader = Friends\Friends::template_loader(); |
| 10 |
?> |
| 11 |
<article id="post-<?php the_ID(); ?>" <?php post_class( 'column col-3 col-xl-4 col-lg-6 col-sm-12 col-xs-12' ); ?>> |
| 12 |
<div class="card"> |
| 13 |
<?php |
| 14 |
$template_loader->get_template_part( 'frontend/parts/header', get_post_format(), $args ); |
| 15 |
$template_loader->get_template_part( 'frontend/parts/title', get_post_format(), $args ); |
| 16 |
$template_loader->get_template_part( 'frontend/parts/entry-content', get_post_format(), $args ); |
| 17 |
$template_loader->get_template_part( 'frontend/parts/footer', get_post_format(), $args ); |
| 18 |
?> |
| 19 |
</div> |
| 20 |
</article> |
| 21 |
|