myblog/templates/message_board.html
2018-07-03 18:02:38 +08:00

14 lines
233 B
HTML
Executable File

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