www_aibox/templates/partials/partnerCard.html
2025-02-12 06:59:33 +00:00

22 lines
846 B
HTML

<div class="flex flex-col rounded-lg shadow-lg overflow-hidden border">
<div class="flex-1">
<a href="{{post.permalink}}" class="block">
<div class="flex-shrink-0">
{% set url = get_url(path='/' ~ post.relative_path | replace(from='_', to='-') | replace(from='index.md', to=post.extra.imgPath)) %}
<img class="h-48 w-full mx-auto object-cover" src="{{url}}" alt="{{post.title ~ ' Picture'}}" />
</div>
<div class="flex-1 bg-white p-6 flex flex-col justify-between">
<h3 class="mt-2 text-lg leading-6 font-medium text-gray-900 text-left not-italic">
{{ post.title }}
</h3>
{% if post.description %}
<p class="mt-3 text-sm font-normal text-gray-500 text-left">
{{ post.description }}
</p>
{% endif %}
</a>
</div>
</div>
</div>