19 lines
338 B
HTML
Executable File
19 lines
338 B
HTML
Executable File
{# 引入base #}
|
|
{% extends 'study/base.html' %}
|
|
|
|
{# 网站标签 #}
|
|
{% block title %} {{ posts['title'] }} {% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ posts['title'] }}</h1>
|
|
<span>{{ posts['created_8'] }}</span>
|
|
<a href="./{{ posts['id'] }}/edit">
|
|
<span>编辑</span>
|
|
</a>
|
|
<hr>
|
|
|
|
<p>{{ posts['content'] }}</p>
|
|
|
|
|
|
|
|
{% endblock %} |