123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- {{ partial "headers.html" . }}
- </head>
- <body style="overflow-x: hidden;">
- {{ partial "nav.html" . }}
- <div class="container-fluid blog-categories p-0">
- <section class="bhouseweb_loc_banner">
- <img src="/img/banner/bn_blog@2x.png" class="banner-img card-img" alt="...">
- </section>
- <div class="container">
- <nav
- style="--bs-breadcrumb-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z' fill='currentColor'/%3E%3C/svg%3E");"
- aria-label="breadcrumb">
- <ol class="breadcrumb">
- <li class="breadcrumb-item"><a href="#"><img src="/img/bt_footer_index@2x.png" width="30px" alt="" style="margin-bottom: 5px;"></a></li>
- <li class="breadcrumb-item"><a href="#">成家知識專欄</a></li>
- <li class="breadcrumb-item active" aria-current="page">預售屋客變</li>
- </ol>
- </nav>
- <div class="d-flex flex-column align-items-start">
- <div class="link-list">
- <button><a href="">客廳</a></button>
- <button><a href="">主臥</a></button>
- <button><a href="">客房</a></button>
- <button><a href="">客廳</a></button>
- <button><a href="">主臥</a></button>
- <button><a href="">客房</a></button>
- </div>
- <div class="bhouseweb_loc_search_box">
- <form class="bhouseweb_search_form d-flex">
- <div class="bhouseweb_search_img" style="margin-right: 1vw;">
- <img src="/img/icon_search@2x.png" alt="">
- </div>
- <input id="bhouseweb_search" class="me-md-2" type="search" placeholder="搜尋「客變」「工業風」「三代同堂」"
- aria-label="Search">
- </form>
- </div>
- </div>
- </div>
- <div style="border-top: 1px solid #969696;"></div>
- <div class="article">
- {{ $paginator := .Paginate .Data.Pages }}
- {{ range $paginator.Pages }}
- <div class="article-item">
- <a href="{{ .RelPermalink }}">
- <img src="{{ .Params.Image | relURL }}" alt="">
- </a>
- <div class="d-flex flex-column">
- <a href="{{ .RelPermalink }}">
- <h4>{{ .Title }}</h4>
- </a>
- <p class="mt-auto my-2 fw-bold">{{ .PublishDate.Format "2006-01-02" }}</p>
- <a href="{{ .RelPermalink }}" class="description">
- <p style="letter-spacing: 1px;">{{.Params.description }}</p>
- </a>
- <!-- <p style="color:#4D4D4D;">{{ .Summary }}</p> -->
- </div>
- </div>
- {{ end }}
- <!-- <div class="article-item">
- <a href="">
- <img src="/img//collection/boutique_hotel_slightly_drunk_chill_house_2.webp" alt="">
- </a>
- <div class="d-flex flex-column">
- <a href="">
- <h4>【客變】 預售屋客變懶人包:客變什麼?這樣做好不好?</h4>
- </a>
- <p class="mt-auto mb-0">2021-11-23</p>
- </div>
- </div>
- <div class="article-item">
- <a href="">
- <img src="/img//collection/boutique_hotel_slightly_drunk_chill_house_2.webp" alt="">
- </a>
- <div class="d-flex flex-column">
- <a href="">
- <h4>【文章類別】 標題NotoJPBold22級字行距32pt置左</h4>
- </a>
- <p class="mt-auto mb-0">2021-11-23</p>
- </div>
- </div>
- <div class="article-item">
- <a href="">
- <img src="/img//collection/boutique_hotel_slightly_drunk_chill_house_2.webp" alt="">
- </a>
- <div class="d-flex flex-column">
- <a href="">
- <h4>【文章類別】 標題NotoJPBold22級字行距
- 32pt置左</h4>
- </a>
- <p class="mt-auto mb-0">2021-11-23</p>
- </div>
- </div> -->
- <a class="nav-link article_readMore" href="#">< 回到成家知識庫</a>
- </div>
- </div>
- {{ partial "footer.html" . }}
- {{ partial "scripts.html" . }}
- </body>
- </html>
|