You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
714 B

{% extends 'article/article_base.html' %}
{% block content %}
<h3 class="text-center">{{ object.title }}</h3>
<p class="text-center">
<small class="text-muted">
作者:{{ object.author}} |
创作时间:{{ object.last_mod_time }} |
浏览量:{{ object.article_views }}
</small>
</p>
<hr>
<div class="mt-4">
<div class="tinymce-cus">
{{ object.content|safe }}
</div>
</div>
{% include "comments/comment_list.html" %}
{% endblock %}
{% block page_js %}
<script>
$(document).ready(function () {
$(".tinymce-cus img").addClass("img-fluid")
})
</script>
{% endblock %}