14 lines
681 B
HTML
14 lines
681 B
HTML
<section class="ad border border-solid border-gray-900 bg-sky-200 rounded-4xl leading-8 h-96">
|
||
<img class="w-full h-[var(--image-height)] object-cover p-0 rounded-t-4xl" src="{{ house.img }}" />
|
||
<div class="details h-[calc(100%-var(--image-height)-20px)] flex flex-col justify-between gap-y-3 p-3">
|
||
<div class="house-details">
|
||
<h1 class="text-2xl">{{ house.name }}</h1>
|
||
<div class="location-price flex justify-between">
|
||
<span class="house-location">{{ house.location }}</span>
|
||
<span class="house-price">{{ house.price }}</span>
|
||
</div>
|
||
</div>
|
||
<a class="after:content-['❯'] after:ml-1" [routerLink]="['/details', house.id]">To offer</a>
|
||
</div>
|
||
</section>
|