45 lines
2.4 KiB
HTML
45 lines
2.4 KiB
HTML
<div class="bg-white rounded-lg shadow-md border border-gray-200 p-8">
|
|
<h2 class="text-xl font-semibold text-gray-900 mb-4">Activity</h2>
|
|
{% if posts.is_empty() %}
|
|
<div class="text-center py-8 text-gray-500">
|
|
<svg class="w-12 h-12 mx-auto mb-3 text-gray-400"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" />
|
|
</svg>
|
|
<p>No posts yet</p>
|
|
</div>
|
|
{% else %}
|
|
<div class="divide-y divide-gray-200">
|
|
{% for post in posts %}
|
|
<a href="/posts/{{ post.post_id }}"
|
|
class="block py-4 hover:bg-gray-50 -mx-8 px-8 transition-colors group">
|
|
<div class="flex items-start justify-between">
|
|
<div class="flex-1 min-w-0">
|
|
<h3 class="text-base font-medium text-gray-900 group-hover:text-blue-600 transition-colors mb-1">{{ post.title }}</h3>
|
|
<div class="flex items-center text-sm text-gray-500">
|
|
<svg class="w-4 h-4 mr-1.5"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z" />
|
|
</svg>
|
|
<time datetime="{{ post.published_at }}">
|
|
{{ post.formatted_date() }}
|
|
</time>
|
|
</div>
|
|
</div>
|
|
<svg class="w-5 h-5 text-gray-400 group-hover:text-blue-600 transition-colors flex-shrink-0 ml-4"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7" />
|
|
</svg>
|
|
</div>
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|