real-estate.html 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. ---
  2. layout: marketing
  3. permalink: marketing/real-estate.html
  4. ---
  5. <header class="img-bg" style="background-image: url({{ page | relative }}/static/marketing/photo-1564013799919-ab600027ffc6.jpg)">
  6. <div class="hero position-relative bg-primary py-12" style="--tblr-bg-opacity: 0.9">
  7. <div class="container-narrow">
  8. <h1 class="hero-title text-white">Find your forever home</h1>
  9. <p class="hero-description mb-5 text-white text-opacity-50">It's time to find the home of your dreams, and you search begins here. We make it easy to find the property that fits your needs and budget.</p>
  10. <div class="row gx-5 justify-content-center">
  11. <div class="col-xl-6 col-lg-8 text-center">
  12. <form novalidate="" class="row row-cols-1 row-cols-md-auto g-3 align-items-center">
  13. <div class="col flex-grow-1">
  14. <input id="inputEmail" type="text" placeholder="Search properties near you..." class="form-control form-control-solid" />
  15. </div>
  16. <div class="col"><button type="submit" class="btn btn-teal fw-500">Search</button></div>
  17. </form>
  18. </div>
  19. </div>
  20. </div>
  21. </div>
  22. </header>
  23. <section class="section section-white">
  24. {% include "marketing/section-divider.html" divider="arc" %}
  25. <div class="container">
  26. <div class="row g-6">
  27. {% for building in real-estate %}
  28. <div class="col-md-6 col-lg-4">
  29. <div class="card">
  30. <a href="#">
  31. <div class="img-bg ratio ratio-4x3 card-img-top" style="background-image: url({{ page | relative }}/static/marketing/{{ building.image }})"></div>
  32. </a>
  33. <div class="card-body">
  34. <div class="h1 mb-2 fw-bold">{{ building.price }}</div>
  35. <div>
  36. <div class="text-secondary">{{ building.address }}, California USA</div>
  37. <div class="d-flex mb-4 text-secondary">
  38. <div class="d-block d-flex align-items-center me-3">
  39. {% include "ui/icon.html" icon="bed" class="me-1" %}
  40. {{ building.bedrooms }} beds
  41. </div>
  42. <div class="d-block d-flex align-items-center">
  43. {% include "ui/icon.html" icon="bath" class="me-1" %}
  44. {{ building.baths }} baths
  45. </div>
  46. </div>
  47. <a href="#" class="btn btn-primary py-2 px-3">See details</a>
  48. </div>
  49. </div>
  50. </div>
  51. </div>
  52. {% endfor %}
  53. </div>
  54. </div>
  55. </section>