-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive.php
39 lines (22 loc) · 921 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
29
30
31
32
33
34
35
36
37
38
39
<?php
azum()->set('template', 'archive');
get_header(); ?>
<div id="primary" class="<?php azus()->_class('azu-content-area'); ?>">
<div id="main" class="<?php azus()->_class('azu-main'); ?>" role="main">
<?php do_action( 'azzu_before_loop' ); ?>
<?php if ( have_posts() ) : ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php
get_template_part( 'content' );
?>
<?php endwhile; ?>
<?php azut()->azu_paginator(); ?>
<?php else : ?>
<?php azut()->azzu_no_result(); ?>
<?php endif; ?>
<?php do_action( 'azzu_after_loop' ); ?>
</div><!-- #main -->
</div><!-- #primary -->
<?php do_action('azzu_after_content'); ?>
<?php get_footer(); ?>