carhop__dynamiques-theme__P.../template-parts/content-dbmod.php

55 lines
1.4 KiB
PHP

<?php
/**
* Template part for displaying dbmod posts
*/
?>
<?php
$chapo = get_field('chapo');
$content = get_field('content');
$author = get_field('author');
$maitron_url = get_field('maitron_url');
?>
<article id="post-<?php the_ID(); ?>" <?php post_class('post-card-dbmod'); ?>>
<div class="card h-100">
<?php if (has_post_thumbnail()) : ?>
<div class="card-img-top">
<?php the_post_thumbnail('medium', array('class' => 'img-fluid')); ?>
</div>
<?php endif; ?>
<div class="post-card-dbmod__content">
<h2 class="post-card-dbmod__title">
<a href="<?php the_permalink(); ?>">
<?php the_title(); ?>
</a>
</h2>
<?php if ($author) : ?>
<p class="author">par :<?php echo esc_html($author); ?></p>
<?php endif; ?>
<div class="post-card-dbmod__details">
<?php if ($chapo) : ?>
<p class="chapo"><?php echo esc_html($chapo); ?></p>
<?php endif; ?>
<?php if ($content) : ?>
<p class="content"><?php echo esc_html($content); ?></p>
<?php endif; ?>
<?php if ($maitron_url) : ?>
<p class="maitron_url">Maitron URL: <?php echo esc_html($maitron_url); ?></p>
<?php endif; ?>
</div>
</div>
<div class="card-footer">
<a href="<?php the_permalink(); ?>" class="btn btn-primary">
<?php _e('Voir plus', 'carhop'); ?>
</a>
</div>
</div>
</article>