-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchive.php
More file actions
67 lines (41 loc) · 1.31 KB
/
archive.php
File metadata and controls
67 lines (41 loc) · 1.31 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
/**
* Archive Template
*/
get_header(); ?>
<div id="content" class="site-content">
<header class="ccl-c-hero">
<div class="ccl-l-container">
<div class="ccl-l-row">
<div class="ccl-l-column ccl-l-span-third-lg">
<div class="ccl-c-hero__header">
<h1 class="ccl-c-hero__title"><?php the_archive_title(); ?></h1>
</div>
</div>
<div class="ccl-l-column ccl-l-span-two-thirds-lg">
<div class="ccl-c-hero__content">
<div class="ccl-h4 ccl-u-mt-0"><?php echo the_archive_description(); ?></div>
</div>
</div>
</div>
</div>
</header>
<div class="ccl-l-container ccl-u-my-3">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
</header>
<div class="entry-summary">
<?php the_excerpt(); ?>
</div>
</article>
<?php endwhile; ?>
<?php the_posts_navigation(); ?>
<?php else : ?>
<p class="ccl-h1 ccl-u-mb-2">No posts found.</p>
<?php endif; ?>
</div>
</div>
<?php get_footer();