FEAT Introducing component
This commit is contained in:
parent
37eba83c45
commit
cfe77e9f38
49
archive-dbmob.php
Normal file
49
archive-dbmob.php
Normal file
|
|
@ -0,0 +1,49 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The template for displaying archive pages for the dbmod post type
|
||||||
|
*/
|
||||||
|
|
||||||
|
get_header(); ?>
|
||||||
|
|
||||||
|
<div class="archive-dbmob">
|
||||||
|
<div class="container">
|
||||||
|
<div class="page-heading">
|
||||||
|
<h1>
|
||||||
|
<span class="acronyme">DBMOB</span>
|
||||||
|
<span class="explanation"> Dictionnaire biographique du mouvement ouvrier en Belgique</span>
|
||||||
|
</h1>
|
||||||
|
<p>Découvrez notre rôle au sein du projet DBMOB et explorez les notices biographiques réalisées par l’équipe du CARHOP. Ces portraits de militant·e·s retracent leurs engagements et contributions. </p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="post-grid">
|
||||||
|
|
||||||
|
<?php if (have_posts()) : ?>
|
||||||
|
<?php while (have_posts()) : the_post(); ?>
|
||||||
|
<?php get_template_part('template-parts/content', 'dbmod'); ?>
|
||||||
|
<?php endwhile; ?>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagination">
|
||||||
|
<?php
|
||||||
|
the_posts_pagination(array(
|
||||||
|
'mid_size' => 2,
|
||||||
|
'prev_text' => __('Précédent', 'carhop'),
|
||||||
|
'next_text' => __('Suivant', 'carhop'),
|
||||||
|
));
|
||||||
|
?>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<?php else : ?>
|
||||||
|
<div class="col-12">
|
||||||
|
<?php get_template_part('template-parts/content', 'none'); ?>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<?php get_footer(); ?>
|
||||||
Loading…
Reference in New Issue
Block a user