2024-10-23 03:46:54 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
2024-10-24 06:00:01 +00:00
|
|
|
<article class="box box-pop">
|
2024-10-23 03:46:54 +00:00
|
|
|
<img src="{{ post.cover_img_path }}"></img>
|
2024-10-24 06:00:01 +00:00
|
|
|
<h1>{{ post.meta.title }}</h1>
|
2024-10-23 03:46:54 +00:00
|
|
|
{{ post.body }}
|
|
|
|
</article>
|
|
|
|
{% endblock %}
|