| 1 |
<?php |
| 2 |
/** |
| 3 |
* Mastodon theme: post content template. |
| 4 |
* |
| 5 |
* @package Friends |
| 6 |
*/ |
| 7 |
|
| 8 |
$template_loader = Friends\Friends::template_loader(); |
| 9 |
?> |
| 10 |
<article id="post-<?php the_ID(); ?>" <?php post_class( 'card translator-exclude' ); ?>> |
| 11 |
<?php $template_loader->get_template_part( 'frontend/parts/header', get_post_format(), $args ); ?> |
| 12 |
<div class="card-title"> |
| 13 |
<?php $template_loader->get_template_part( 'frontend/parts/title', get_post_format(), $args ); ?> |
| 14 |
</div> |
| 15 |
<div class="card-body"> |
| 16 |
<?php $template_loader->get_template_part( 'frontend/parts/entry-content', get_post_format(), $args ); ?> |
| 17 |
</div> |
| 18 |
<?php $template_loader->get_template_part( 'frontend/parts/footer', get_post_format(), $args ); ?> |
| 19 |
</article> |
| 20 |
|