Files
universal_web_loco_rewrite/assets/views/blog/show.html
2026-05-17 17:46:04 +02:00

26 lines
846 B
HTML

{% extends "base.html" %}
{% block title %}{{ article.title }}{% endblock title %}
{% block content %}
<article class="space-y-2">
<div class="flex flex-wrap items-center justify-between gap-3">
<div>
<h1 class="text-2xl font-bold">{{ article.title }}</h1>
<p class="text-sm opacity-70">Views: {{ article.view_count }}</p>
</div>
<a href="/blog" class="btn btn-ghost btn-sm">Back to blog</a>
</div>
<div class="card border border-base-300 bg-base-100 shadow-sm">
<div class="card-body">
{% if article.excerpt %}
<p class="text-base leading-relaxed opacity-80">{{ article.excerpt }}</p>
<div class="border-t border-base-300 pt-4"></div>
{% endif %}
<div class="leading-relaxed whitespace-pre-line">{{ article.content }}</div>
</div>
</div>
</article>
{% endblock content %}