12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <div class="container-fluid p-0">
- {{ $t := $.Site.GetPage "/news" }}
- {{ range $index, $element := first 1 ( where $t.Pages "Params.display" true) }}
- <div class="news-link">
- <a href="{{ .Params.url }}">{{ .Params.title }} ></a>
- </div>
- {{ end }}
- <div class="slider responsive">
- <div class="slider-item">
- <img src="./img/home/head.png" alt="" class="img-fluid">
- </div>
- <!-- LINE@ 暫時關閉 -->
- <!-- <div class="slider-item">
- <a href="https://maac.io/1Qcnm" target="_blank">
- <img src="./img/home/pillow.jpg" alt="" class="img-fluid">
- </a>
- </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>
|