diff options
| -rw-r--r-- | templates/blog/post.html | 2 | ||||
| -rw-r--r-- | templates/blog_admin/edit_post.html | 14 |
2 files changed, 1 insertions, 15 deletions
diff --git a/templates/blog/post.html b/templates/blog/post.html index afe47d1f..5647068a 100644 --- a/templates/blog/post.html +++ b/templates/blog/post.html @@ -66,7 +66,7 @@ {% else %} <div id="new-comment" class="mtsbitem"> <h2>Leave a Comment</h2> - <p>You must be logged in to leave a comment. <a href="{% url 'blog:login' %}">Login</a> or <a href="{% url 'blog:register' %}">Register</a>.</p> + <p><em>You must be logged in to leave a comment.</em></p> </div> {% endif %} diff --git a/templates/blog_admin/edit_post.html b/templates/blog_admin/edit_post.html index 5d113d9f..88f91cb9 100644 --- a/templates/blog_admin/edit_post.html +++ b/templates/blog_admin/edit_post.html @@ -1,15 +1,5 @@ {% extends 'blog/partials/base.html' %} {% block content %} {% load subdomain %} -<link - rel="stylesheet" - href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/monokai-sublime.min.css" -/> -<link href="https://cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet" /> -<style> - .ql-editor { - font-family: "Times New Roman", Times, serif; - } -</style> <div class="main"> <section> {% include 'blog_admin/partials/posts_topbar.html' %} @@ -147,9 +137,6 @@ </form> </section> </div> - -<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script> -<script src="https://cdn.quilljs.com/1.3.6/quill.min.js"></script> <script> const Parchment = Quill.import("parchment"); const Delta = Quill.import("delta"); @@ -231,7 +218,6 @@ var quill = new Quill("#editor-container", { modules: { - syntax: true, toolbar: { container: "#toolbar-container", handlers: { |
