forked from Qloapps/QloApps
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpage.tpl
116 lines (114 loc) · 5.65 KB
/
page.tpl
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{*
* 2010-2022 Webkul.
*
* NOTICE OF LICENSE
*
* All right is reserved,
* Please go through this link for complete license : https://store.webkul.com/license.html
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade this module to newer
* versions in the future. If you wish to customize this module for your
* needs please refer to https://store.webkul.com/customisation-guidelines/ for more information.
*
* @author Webkul IN <support@webkul.com>
* @copyright 2010-2022 Webkul IN
* @license https://store.webkul.com/license.html
*}
<div id="catalog-center-column">
{if isset($modules) && $modules}
<div id="suggested-modules-list" class="row list-container">
<div class="col-sm-12">
<div class="row form-horizontal list-header">
<div class="pull-left col-sm-6 title">{l s='Suggested Modules'} </div>
<div class="pull-right col-sm-3">
<div class="input-group">
<input type="text" name="module-search" id="module-search" placeholder="{l s='Search module name...'}">
<span class="input-group-addon">
<i class="icon-search"></i>
</span>
</div>
</div>
{if isset($sort_criterta) && $sort_criterta}
<div class="pull-right col-sm-3">
<div class="row">
<label class="pull-left sort-label"><span>{l s='Sort By :'}</span></label>
<div class="col-sm-9">
<select name="module-sort" id="module-sort">
{foreach $sort_criterta as $criteria}
<option value="{$criteria['value']}" {if $criteria['value'] == $module_sort}selected{/if}>{$criteria['title']}</option>
{/foreach}
</select>
</div>
</div>
</div>
{/if}
</div>
{include file='controllers/modules_catalog/modules_list.tpl' elements=$modules}
<div class="list-empty" style="display:none">
<div class="list-empty-msg">
<i class="icon-warning-sign list-empty-icon"></i>
{l s='No modules found'}
</div>
</div>
<div class="pagination-container">
<ul class="pagination-block"></ul>
</div>
</div>
</div>
<div class="panel explore-panel text-center">
{l s='Explore all addon of Qloapps'}
<a href="https://qloapps.com/addons/" class="btn btn-primary btn-lg">{l s='QloApps Addons'}</a>
</div>
{/if}
{if isset($themes) && $themes}
<div id="suggested-theme-list" class="row list-container">
<div class="col-sm-12">
<div class="row form-horizontal list-header">
{* <div class="row"> *}
<div class="pull-left col-sm-6 title">{l s='Suggested Themes'} </div>
<div class="pull-right col-sm-3">
<div class="input-group">
<input type="text" name="theme-search" id="theme-search" placeholder="{l s='Search theme name...'}">
<span class="input-group-addon">
<i class="icon-search"></i>
</span>
</div>
</div>
{if isset($sort_criterta) && $sort_criterta}
<div class="pull-right col-sm-3">
<div class="row">
{* <div class="col-sm-3"> *}
<label class="pull-left sort-label"><span>{l s='Sort By :'}</span></label>
{* </div> *}
<div class="col-sm-9">
<select name="theme-sort" id="theme-sort">
{foreach $sort_criterta as $criteria}
<option value="{$criteria['value']}" {if $criteria['value'] == $theme_sort}selected{/if}>{$criteria['title']}</option>
{/foreach}
</select>
</div>
</div>
</div>
{/if}
{* </div> *}
</div>
{include file='controllers/modules_catalog/theme_list.tpl' elements=$themes}
<div class="list-empty" style="display:none">
<div class="list-empty-msg">
<i class="icon-warning-sign list-empty-icon"></i>
{l s='No themes found'}
</div>
</div>
<div class="pagination-container">
<ul class="pagination-block"></ul>
</div>
</div>
</div>
<div class="panel explore-panel text-center">
{l s='Explore all themes of QloApps'}
<a href="https://store.webkul.com/Qloapps/responsive.html" class="btn btn-primary btn-lg">{l s='QloApps Themes'}</a>
</div>
{/if}
</div>