12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <!-- {{ if default true .Site.Params.CarouselHomepage.enable }}
- {{ if gt (len .Site.Data.carousel) 0 }}
- <section>
- <div class="home-carousel">
- <div class="dark-mask"></div>
- <div class="container">
- <div class="homepage owl-carousel"
- data-autoplay="{{ default true .Site.Params.CarouselHomepage.auto_play }}"
- data-slide-speed="{{ default 2000 .Site.Params.CarouselHomepage.slide_speed }}"
- data-pagination-speed="{{ default 1000 .Site.Params.CarouselHomepage.pagination_speed }}">
- {{ range sort .Site.Data.carousel "weight" }}
- <div class="item">
- {{ if .href }}
- <a href="{{ .href }}">
- {{ end }}
- <div class="row">
- <div class="col-sm-5 right">
- <h1>{{ .title }}</h1>
- {{ .description | safeHTML }}
- </div>
- <div class="col-sm-7">
- <img class="img-responsive" src="{{ .image }}" alt="">
- </div>
- </div>
- {{ if .href }}
- </a>
- {{ end }}
- </div>
- {{ end }}
- </div>
-
- </div>
- </div>
- </section>
- {{ end }}
- {{ end }} -->
- <div class="container-fluid p-0">
- <div class="news-link">
- <a href="/news/little_treasure_home_announcement_on_peace_of_mind_and_epidemic_prevention">【最新消息】小寶優居|門市安心防疫公告></a>
- </div>
- <div class="slider responsive">
- <div class="slider-item">
- <img src="./img/head1.webp" alt="" class="img-fluid">
- </div>
- <div class="slider-item">
- <a style="text-decoration: none;" href="/collection/industrial_bar_house">
- <img src="./img/home/collection1.webp" alt="" class="img-fluid">
- <div>
- <p>「把酒吧搬回家以後,天天都有night club可以去了!」</p>
- <p>新北溫氏夫妻|三房兩廳|26.5坪</p>
- </div>
- </a>
- </div>
- <div class="slider-item">
- <a style="text-decoration: none;" href="/collection/boutique_hotel_slightly_drunk_chill_house">
- <img src="./img//home/collection2.webp" alt="" class="img-fluid">
- <div>
- <p>「回家,就是度假!還有比我家,更適合度假的地方嗎?」</p>
- <p>新北黃先生|三房兩廳|30坪</p>
- </div>
- </a>
- </div>
- <div class="slider-item">
- <a style="text-decoration: none;" href="/collection/cat_aqiu_s_lazy_nest">
- <img src="./img//home/collection3.webp" alt="" class="img-fluid">
- <div>
- <p>「以前我們是大家庭,所以我一直嚮往擁有屬於自己的空間。」</p>
- <p>台中阿丘阿嬤|三房兩廳|24坪</p>
- </div>
- </a>
- </div>
- </div>
- </div>
|