-
Notifications
You must be signed in to change notification settings - Fork 934
Expand file tree
/
Copy pathshop.php
More file actions
33 lines (25 loc) · 750 Bytes
/
shop.php
File metadata and controls
33 lines (25 loc) · 750 Bytes
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
<?php
/*
type: layout
content_type: dynamic
name: Shop
is_shop: y
description: Showcase shop items in a sylish grid arrangement.
position: 4
*/
?>
<?php include template_dir() . "header.php"; ?>
<div class="edit" rel="content" field="dream_content">
<module type="layouts" template="skin-68"/>
<section class="masonry-contained">
<div class="container">
<div class="row">
<div class="masonry-shop">
<module type="categories" content-id="<?php print PAGE_ID; ?>" />
<module type="shop/products" limit="18" description-length="70"/>
</div>
</div>
</div>
</section>
</div>
<?php include template_dir() . "footer.php"; ?>