24 lines
686 B
HTML
24 lines
686 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ page.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">{{ page.title }}</h1>
|
|
<p class="text-sm opacity-70">About this site.</p>
|
|
</div>
|
|
{% if logged_in_admin %}
|
|
<a href="/admin/about" class="btn btn-ghost btn-sm">Edit page</a>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<div class="card border border-base-300 bg-base-100 shadow-sm">
|
|
<div class="card-body">
|
|
<div class="leading-relaxed whitespace-pre-line">{{ page.content }}</div>
|
|
</div>
|
|
</div>
|
|
</article>
|
|
{% endblock content %}
|