Files
flask_blog/templates/post_detail.html
2026-03-25 05:03:29 +01:00

29 lines
962 B
HTML

{% for css in component_css %}
<link rel="stylesheet" href="{{ url_for('static', filename=css) }}" />
{% endfor %} {% extends "base.html" %} {% block title %}{{ post.title }} -
Simple Blog Template{% endblock %} {% block content %} {% from
"components/post_renderer.html" import render_post %} {% from
"components/comment_renderer.html" import render_comment %}
<div class="row">
<div class="col-lg-12">
<h1 class="text-3xl font-bold mb-8">{{ post.title }}</h1>
<p class="lead">{{ post.subtitle }}</p>
<p>
<span class="glyphicon glyphicon-time"></span> Posted on {{ post.date }}
</p>
{{ render_post(post) }}
<div class="post-actions">
<a href="{{ url_for('home') }}" class="btn btn-default btn-custom"
>← Back to Posts</a
>
</div>
<hr style="margin-top: 25px; margin-bottom: 10px" />
{% include 'leave_comment.html' %}
<hr />
{{render_comment(comments)}}
</div>
</div>
{% endblock %}