-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproducts_no.php
53 lines (43 loc) · 1.71 KB
/
products_no.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php include('partials/header.php'); ?>
<div class="tree">
DURVO
</div>
<script>
$(document).ready(function () {
$('body > .main').addClass('show-sidebar-tree');
});
</script>
<main>
<div class="card style-1 mb-3">
<div class="card-header">
<h5><i class="mdi mdi-signal-cellular-3 text-primary mr-3"></i> <strong>Shop</strong></h5>
<div class="d-none">
<div class="input-group mb-0 prepend-transparent">
<div class="input-group-prepend">
<span class="input-group-text px-1"><i class="mdi mdi-magnify"></i></span>
</div>
<input type="text" class="form-control form-control-sm" aria-label="Search" placeholder="Search">
</div>
</div>
</div>
<div class="card-body pt-3">
<div class="row">
<div class="col-12">
<div class="no-items-box" style="background-image: url('assets/img/no_content.svg'); ">
<h4>You don’t have any posts yet</h4>
<p>Create your first post right now.<br />
You are able to do that in very easy way!</p>
<br />
<a href="#" class="btn btn-primary btn-rounded">Create a Product</a>
</div>
</div>
</div>
</div>
</div>
<div class="row copyright mt-3">
<div class="col-12">
<p class="text-muted text-center small">Open-source website builder and CMS Microweber 2020. Version: 1.18</p>
</div>
</div>
</main>
<?php include('partials/footer.php'); ?>