Blame view

public/pug/favorites.pug 5.38 KB
242debab8   thesolarwind   Первый коммит в п...
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
  -var isFooterModified = true
  
  doctype html
  
  html(lang="ru")
  
      head
          meta(charset="UTF-8")
          meta(http-equiv="X-UA-Compatible", content="IE=edge")
          meta(name="viewport", content="width=device-width, initial-scale=1.0")
          title RentTorg
          include templates/style.pug
          
      body
  
          .spinner
  
          .wrapper
  
              //- миксины
              include templates/mixin
              //- хедер
              include templates/header
  
              main
  
                  section.favorites
  
                      .favorites-top
                          .container
  
                              .breadcrumbs
                                  ul.breadcrumbs__list
                                      li.breadcrumbs__item
                                          a(href="#").breadcrumbs__link Главная
                                      li.breadcrumbs__item
                                          span.breadcrumbs__link Избранное 
  
                              h1.favorites__title.title-main Избранное
  
                              p.favorites__descr Здесь вы можете ознакомиться с недвижимостью которая вам понравилось
                              
                      .favorites-cnt
                          .container
  
                              form.favorites__sorts
  
                                  .favorites__sort-group.sort-group.js_sort_group
                                      input(type="hidden").js_sort_group_input
                                      .sort-group__current.js_sort_group_current Сначала дешевле
                                      ul.sort-group__list.js_sort_group_list
                                          li.sort-group__item.js_sort_group_item(data-val="1").active Сначала дешевле
                                          li.sort-group__item.js_sort_group_item(data-val="2") Сначала дороже
                                  
                                  .favorites__sort-group.sort-group.js_sort_group
                                      input(type="hidden").js_sort_group_input
                                      .sort-group__current.js_sort_group_current Сначала новые
                                      ul.sort-group__list.js_sort_group_list
                                          li.sort-group__item.js_sort_group_item(data-val="1").active Сначала новые
                                          li.sort-group__item.js_sort_group_item(data-val="2") Сначала старые
                                  
                                  .favorites__sort-group.sort-group.sort-group--wide.js_sort_group
                                      input(type="hidden").js_sort_group_input
                                      .sort-group__current.js_sort_group_current Сначала с большей площадью
                                      ul.sort-group__list.js_sort_group_list
                                          li.sort-group__item.js_sort_group_item(data-val="1").active Сначала с большей площадью
                                          li.sort-group__item.js_sort_group_item(data-val="2") Сначала с меньшей площадью
                              
                              .favorites__grid
  
                                  +card('images/card/card-img-1.jpg', 'Салон красоты', 'ЖК “Новинки 1”', 'Фрунзенская (10 мин., пешком)', 'background-color: #FFC955;', 'ул. Ак. Королева, д. 13, стр. 1, этаж 7, пом. 1, к. 69', '556 м2', '550 256 ₽', '1 000 000 ₽', false, 'Подробнее')
                                  +card('images/card/card-img-2.jpg', 'Барбер-шоп', 'ЖК “Новоарбатский”', 'Арбатская (8 мин., пешком)', 'background-color: #0000A0;', 'г. Москва, ул. Дербеневская, д. 1, стр. 6, п. 4, эт. 2, к. 3.1.', '6 556 м2', '5 225 256 ₽', '15 520 900 ₽', true, 'Подробнее об аренде')
                                  +card('images/card/card-img-3.jpg', 'Аптека', 'ЖК “Садовые кварталы”', 'Коломенская (2 мин., пешком)', 'background-color: #029B55;', 'ул. Ак. Королева, д. 13, стр. 1, этаж 7, пом. 1, к. 69', '8 626 м2', '550 256 ₽', '5 280 000 ₽', false, 'Подробнее о продаже')
                                  +card('images/card/card-img-4.jpg', 'Витрина', 'ЖК “Нахимовский проспект, 46”', 'Парк Победы (5 мин., пешком)', 'background-color: #222964;', 'г. Москва, ул. Дербеневская, д. 1, стр. 6, п. 4, эт. 2, к. 3.1.', '6 856 м2', '25 256 ₽', '2 625 520 ₽', true, 'Подробнее об аренде')
  
                                  +card('images/card/card-img-1.jpg', 'Салон красоты', 'ЖК “Новинки 1”', 'Фрунзенская (10 мин., пешком)', 'background-color: #FFC955;', 'ул. Ак. Королева, д. 13, стр. 1, этаж 7, пом. 1, к. 69', '556 м2', '550 256 ₽', '1 000 000 ₽', false, 'Подробнее')
  
  
              //- футер
              include templates/footer
          
          //- попапы
          +popups
  
          //- подключение скриптов
          include templates/scripts