myblog/templates/message_board.html
myminwang 0eb8fc3169 DEMO
2018-07-04 20:07:00 +08:00

14 lines
223 B
HTML
Executable File

{% extends "base.html" %}
{% block title %}
<title>留言板 - 烂笔头</title>
{% endblock %}
{% block content %}
<section class="mysection">
{% include "message.html" %}
</section>
{% endblock %}