website/layout/templates/project.html

14 lines
611 B
HTML
Raw Normal View History

2023-07-17 15:01:11 +00:00
<div class="flex flex-row self-start pt-8">
2022-05-12 13:29:25 +00:00
{{ template_if_empty item.screenshot layout/templates/no_screenshot.html layout/templates/screenshot.html }}
2023-07-17 15:01:11 +00:00
<div class="flex flex-col pl-8">
<h2 class="prose text-indigo-400 text-2xl">{{ item.title }}</h2>
<p class="prose text-white text-justify">{{ item.description }}</p>
2022-05-12 13:29:25 +00:00
2023-07-17 15:01:11 +00:00
<div class="pt-4">
<ul>
{{ template_if_empty item.website layout/templates/empty.html layout/templates/project_website.html }}
<li><a class="prose text-indigo-400" href="https://{{ item.source_url }}">Code</a></li>
</ul>
</div>
2022-05-12 13:29:25 +00:00
</div>
2023-07-17 15:01:11 +00:00
</div>