48 lines
2.7 KiB
HTML
48 lines
2.7 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}{{ post.title }}{% endblock %}
|
|
{% block content %}
|
|
<div class="max-w-3xl mx-auto">
|
|
<article>
|
|
<header class="pb-4 mb-2 border-b-2 border-gray-300 border-dashed">
|
|
<h1 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4 leading-tight">{{ post.title }}</h1>
|
|
<div class="flex flex-col sm:flex-row sm:items-center sm:justify-between text-sm text-gray-600">
|
|
<div class="flex items-center space-x-4">
|
|
<div class="flex items-center">
|
|
<div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center mr-2">
|
|
<svg class="w-4 h-4 text-blue-600"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z" />
|
|
</svg>
|
|
</div>
|
|
<a href="/users/{{ post.author }}"
|
|
class="hover:text-blue-600 hover:underline font-medium">{{ post.author }}</a>
|
|
</div>
|
|
<div class="flex items-center">
|
|
<svg class="w-4 h-4 mr-1 text-gray-400"
|
|
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>
|
|
</div>
|
|
</header>
|
|
<div class="prose-compact">{{ post.content | safe }}</div>
|
|
</article>
|
|
<div class="mt-8 bg-gradient-to-r from-blue-600 to-indigo-700 rounded-lg shadow-lg text-white p-8 text-center">
|
|
<h3 class="text-2xl font-bold mb-2">Enjoyed this post?</h3>
|
|
<p class="text-blue-100 mb-4">Subscribe to my newsletter for more insights on Rust backend development.</p>
|
|
<a href="/#newsletter-signup"
|
|
class="inline-block bg-white text-blue-600 hover:bg-gray-100 font-semibold py-3 px-6 rounded-md transition-colors">
|
|
Subscribe
|
|
</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|