12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <!DOCTYPE html>
- <html lang="{{ .Site.LanguageCode }}">
- <head>
- {{ partial "headers.html" . }}
- </head>
- <body style="overflow-x: hidden;">
- <div id="all">
- {{ partial "nav.html" . }}
- {{ partial "carousel.html" . }}
- {{ partial "features.html" . }}
- {{ partial "footer.html" . }}
- </div>
- {{ partial "scripts.html" . }}
- <!-- <script>
- (function getContentsData() {
- // 線上版網址 https://bhouse3.ptt.cx:9002/api/
- // 本地端網址 http://localhost:9001/api/
- fetch('https://bhouse3.ptt.cx:9002/api/contents?url=/collection').then(res => res.json()).then(list => {
- let collectionContent = document.querySelector('.collection-content');
- let collectionList = [];
- for (let i = 0; i < 3; i++) {
- const e = list[i];
- let content = `
- <div class="col-12 p-0 bottom-box">
- <a style="text-decoration: none;" href="${e.url}">
- <img src="${e.image}" style="max-width: 100%;">
- <div>
- <p>${e.banner_img_text}</p>
- <p>${e.homeowner}|${e.room_count}|${e.house_size}</p>
- </div>
- </a>
- </div>`;
- collectionList.push(content);
- }
- collectionContent.innerHTML = collectionList.join(" ");
- })
- })();
- </script> -->
- </body>
- </html>
|