| 12345678910111213141516171819202122232425 |
- {% extends "base.html" %}
- {% block title %}{{ title }} - 个人博客{% endblock %}
- {% block content %}
- <article class="card">
- {% if thumbnail %}
- <div class="card-image">
- <img src="{{ thumbnail }}" alt="{{ title }}" />
- </div>
- {% endif %}
- <div class="card-body">
- <h1 class="card-title">{{ title }}</h1>
- <time class="card-date" datetime="{{ date }}">{{ date[:16] | replace('T', ' ') }}</time>
- <div class="card-summary">
- {{ content | safe }}
- </div>
- {% if logged_in and post_id %}
- <form method="POST" action="{{ url_for('delete_post', post_id=post_id) }}" onsubmit="return confirm('确定要删除「{{ title }}」吗?此操作不可恢复。');" style="margin-top:1.5rem;">
- <button type="submit" class="btn btn-danger">🗑️ 删除文章</button>
- </form>
- {% endif %}
- </div>
- </article>
- {% endblock %}
|