cbax_dev/templates/blog_post.html

9 lines
173 B
HTML
Raw Normal View History

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