www_ourworld_tf/templates/partials/person_card.html
2024-09-26 02:40:14 +02:00

11 lines
492 B
HTML

<div class="flex flex-col px-0 sm:px-4 pb-2">
<a href="{{page.permalink}}" class="border-0 text-gray-700 hover:!text-gray-700 font-normal text-left" style="pointer-events: none;">
{% set url = get_url(path='/' ~ page.relative_path | replace(from='_', to='-') | replace(from='index.md', to=page.extra.imgPath)) %}
<img src="{{url}}" alt="{{page.title ~ ' Picture'}}" />
<div>
<h2 class="text-xl my-4">{{page.title}}</h2>
</div>
</a>
</div>