cavaman

Каталог

May 12th, 2022 (edited)
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.16 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="ru">
  3.  
  4. [[$head]]
  5.  
  6. <body>
  7.   [[$header]]
  8.   <main class="py-5">
  9.      
  10.    
  11.  
  12.     <div class="container">
  13.       <div class="row">
  14.         <div class="col-12 mb-4">
  15.           <h1> [[*pagetitle]]</h1>
  16.         </div>
  17.        
  18.             <div class="row">
  19.                 <div class="col-4 my-4 pr-5">
  20.                     <select id="select_sort" class="form-select" aria-label="sortby">
  21.                         <option value="1" selected> По цене (сначала дешевле)</option>
  22.                         <option value="2"> По цене (сначала дороже)</option>
  23.                     </select>
  24.                 </div>
  25.                
  26.              
  27.                 <div class="col-3 pl-5" my-4>
  28.                     <label for="price_from">Цена от</label>
  29.                     <input type="number" class="form-control mb-2" id="price_from" value="0" min="0" max="99999" step="100">
  30.                 </div>
  31.                
  32.                 <div class="col-3" my-4>
  33.                     <label for="price_to">Цена до</label>
  34.                     <input type="number" class="form-control mb-2" id="price_to" value="99999" min="0" max="99999" step="100">
  35.                 </div>
  36.                
  37.                
  38.                 <div class="col-2 my-4">
  39.                     <button type="button" class="btn btn-success" onclick="start_filter();">Применить</button>
  40.                 </div>
  41.             </div>
  42.            
  43.  
  44.  
  45.             </div>
  46.                    
  47.                
  48.        
  49.         <div class="row">
  50.         [[pdoResources?
  51.           &parents=`[[*id]]`
  52.          &depth=`0`
  53.          &tpl=`card_tovar`
  54.          &sortdir=`ASC`
  55.          &includeTVs=`image, price`
  56.          &sortby=`[[!#GET.sortby]]`
  57.          &sortdir=`[[!#GET.sortdir]]`
  58.          &where=`price>=[[!#GET.price_from:default=`0`]] AND price<=[[!#GET.price_to:default=`999999`]]`
  59.          ]]
  60.        </div>
  61.        
  62.        <div class="col-12">
  63.          [[*content]]
  64.        </div>
  65.      </div>
  66.    </div>
  67.    [[$contact-map]] [[$bottom-message]]
  68.  </main>
  69.  [[$footer]] [[$scripts]]
  70. </body>
  71.  
  72. </html>
Add Comment
Please, Sign In to add comment