forked from corgus/eas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
front-page-regular.php
37 lines (34 loc) · 988 Bytes
/
front-page-regular.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
<?php get_header(); ?>
<?php roots_content_before(); ?>
<?php
$recentlyviewed = eas_recently_viewed_works(0, true);
?>
<div class="sliderwrapper">
<div class="slider">
<ul class="slideritems">
<li class="slidertitle">
<h3 class="slidertitleinner">
Works on display right now
</h3>
</li>
<?php
foreach ($recentlyviewed as $a) {
echo '<li><div class="relative">';
eas_figure_tag($a, 'slider-thumb');
echo '</div></li>';
}
?>
</ul>
</div>
</div>
<div id="content">
<?php roots_main_before(); ?>
<div id="main" role="main">
<?php roots_loop_before(); ?>
<?php get_template_part('loop', 'home'); ?>
<?php roots_loop_after(); ?>
</div><!-- /#main -->
<?php roots_main_after(); ?>
</div><!-- /#content -->
<?php roots_content_after(); ?>
<?php get_footer(); ?>