8 lines
193 B
HTML
8 lines
193 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<article class="box box-pop">
|
|
<img src="{{ post.cover_img_path }}"></img>
|
|
<h1>{{ post.meta.title }}</h1>
|
|
{{ post.body }}
|
|
</article>
|
|
{% endblock %}
|