-
Notifications
You must be signed in to change notification settings - Fork 1
/
submissions.php
35 lines (28 loc) · 920 Bytes
/
submissions.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
<?php
/*
Template Name: submissions
*/
?>
<?php get_header(); ?>
<?php roots_content_before(); ?>
<div id="content" class="<?php echo CONTAINER_CLASSES; ?>">
<?php roots_main_before(); ?>
<div id="main" class="<?php echo FULLWIDTH_CLASSES; ?>" role="main">
<?php roots_loop_before(); ?>
<?php get_template_part('loop', 'page'); ?>
<?php roots_loop_after(); ?>
<?php eas_page_links(); ?>
<ul class="users">
<?php
$contest = get_post_meta($post->ID, 'contest', true);
if (eas_user_is_juror()) {
eas_recently_updated_artists(get_query_var('paged'), 10, $contest);
}
?>
</ul>
<?php eas_page_links(); ?>
</div><!-- /#main -->
<?php roots_main_after(); ?>
</div><!-- /#content -->
<?php roots_content_after(); ?>
<?php get_footer(); ?>