-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy patharchive.php
28 lines (28 loc) · 931 Bytes
/
archive.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php get_header(); ?>
<section class="section">
<div class="container">
<h1 class="header-top-text">Yazılarım</h1>
<p class="header-bottom-text">Faydalı bilgilerin bulunduğu blogumu takip etmeyi unutmayın!</p>
<?php if (have_posts()) : ?>
<div class="row">
<?php while (have_posts()) : the_post(); ?>
<div class="col-md-4 mb-4">
<?php get_template_part('template-parts/cards/card', 'article'); ?>
</div>
<?php endwhile; ?>
</div>
<div class="row mt-4">
<div class="col-12">
<?php get_template_part('template-parts/paginations/pagination', 'articles'); ?>
</div>
</div>
<?php else : ?>
<div class="row">
<div class="col-12">
<?php get_template_part('template-parts/alerts/articles', 'none'); ?>
</div>
</div>
<?php endif; ?>
</div>
</section>
<?php get_footer(); ?>