-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive-event.php
31 lines (22 loc) · 920 Bytes
/
archive-event.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
29
30
31
<?php get_header(); ?>
<!-- content START -->
<main id="content" class="archive-page" >
<h1>Local Maker Markets</h1>
<p>Our Maker Markets in Woolwich and South East London showcase makers and artists that live and work locally.</p>
<p>Take a look at our past events, and sign up to our mailing list to make sure you don’t miss our next event.</p>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post();
get_template_part( 'content', get_post_type( get_the_ID() ) );
endwhile; ?>
<div class="navigation">
<div><?php next_posts_link('« Older Entries') ?></div>
<div><?php previous_posts_link('Newer Entries »') ?></div>
</div>
<?php else : ?>
<h2>Not Found</h2>
<p>Sorry, but you are looking for something that isn't here.</p>
<?php // include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
</main>
<!-- content END -->
<?php get_footer(); ?>