-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchive.php
More file actions
44 lines (30 loc) · 774 Bytes
/
archive.php
File metadata and controls
44 lines (30 loc) · 774 Bytes
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php /**
* News archive
*/ ?>
<?php get_header(); ?>
<header class="page-thumb page-thumb--green">
<div class="page-thumb__spacer"></div>
</header>
<main class="archive green" id="site-content">
<h1><?php single_cat_title(); ?></h1>
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<h2>
<a href="<?php the_permalink(); ?>" class="archive__title">
<?php the_title(); ?>
</a>
</h2>
<p>
<em><?php the_date(); ?></em>
</p>
<?php the_excerpt(); ?>
<p>
<a href="<?php the_permalink(); ?>">Lees verder</a>
</p>
<hr>
<?php endwhile; ?>
<?php the_posts_pagination(); ?>
<?php else: ?>
<p>Sorry, deze pagina lijkt niet te bestaan.</p>
<?php endif; ?>
</main>
<?php get_footer(); ?>