add all components

This commit is contained in:
2025-08-10 17:28:43 +03:00
parent a71faed5b3
commit 4a4e8bd33c
44 changed files with 70 additions and 340 deletions

View File

@@ -8,7 +8,7 @@
{% endif %}
{% endif %}
<div class="flex flex-col rounded-lg shadow-lg overflow-hidden bg-white">
<div class="flex flex-col rounded-lg shadow-lg overflow-hidden border border-gray-300">
{% if post.extra.imgPath %}
{% set img_url = get_url(path='/' ~ post.relative_path | replace(from='_', to='-') | replace(from='index.md', to=post.extra.imgPath)) %}
<div class="flex-shrink-0">
@@ -17,12 +17,12 @@
{% endif %}
<div class="flex-1 p-6 flex flex-col">
<h3 class="text-base text-left font-medium text-gray-900 mb-2">
<h3 class="text-base text-left font-medium mb-2">
{{ post.title }}
</h3>
{% if post.description %}
<p class="text-sm text-left text-gray-500 mb-3">
<p class="text-sm text-left text-gray-400 mb-3">
{{ post.description }}
</p>
{% endif %}