diff --git a/App/Views/blog/article.html b/App/Views/blog/article.html index 8fe80b6..68e6a29 100644 --- a/App/Views/blog/article.html +++ b/App/Views/blog/article.html @@ -137,7 +137,12 @@
-
{{ doc.title }}
+
+ {{ doc.title }} +
+ 修改时间: {{ doc.update_time }} +
+
{{ doc.content | raw }}
diff --git a/App/Views/blog/template/newartile.html b/App/Views/blog/template/newartile.html index 2f4de83..f371da9 100644 --- a/App/Views/blog/template/newartile.html +++ b/App/Views/blog/template/newartile.html @@ -47,14 +47,19 @@
- {% for doc in docs %} + {% for doc in docs %}
-
{{ doc.title }}
-
- {{ doc.content | raw }} -
+
+ {{ doc.title }} +
+ 上次修改时间: {{ doc.update_time }} +
- {% endfor %} +
+ {{ doc.content | raw }} +
+
+ {% endfor %}