aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBobby <[email protected]>2022-09-25 20:34:43 -0400
committerBobby <[email protected]>2022-09-25 20:34:43 -0400
commit8d4428b4eb15a5b7185cc644fb6d434dcc84fcbf (patch)
treee166a59ae0f857932e179770a170e8ea0c2183b2
parent7e11c94866ff0da2a4eb30734bd0e24a18010951 (diff)
downloadthatcomputerscientist-8d4428b4eb15a5b7185cc644fb6d434dcc84fcbf.tar.xz
thatcomputerscientist-8d4428b4eb15a5b7185cc644fb6d434dcc84fcbf.zip
Update page layouts
-rw-r--r--templates/blog/home.html100
-rw-r--r--templates/blog/post.html2
-rw-r--r--templates/blog_admin/edit_post.html2
3 files changed, 60 insertions, 44 deletions
diff --git a/templates/blog/home.html b/templates/blog/home.html
index a57b7fc2..4bb64acf 100644
--- a/templates/blog/home.html
+++ b/templates/blog/home.html
@@ -1,7 +1,9 @@
{% extends 'blog/partials/base.html' %} {% block content %}
<div class="main">
<div class="alert">
- {% comment %} <h1 class="center">That Computer Scientist</h1> {% endcomment %}
+ {% comment %}
+ <h1 class="center">That Computer Scientist</h1>
+ {% endcomment %}
<p>
Welcome to the home of That Computer Scientist. This is my personal
website where I share all of my thoughts, ideas, and experiences. To know
@@ -21,46 +23,60 @@
articles or edit existing ones.
</p>
</div>
- {% if recent_posts %}
- <h3 style="margin-bottom: 0px"><em>Recent Posts</em></h3>
- <hr />
- <ul>
- {% for post in recent_posts %}
- <li>
- <h1 style="margin-bottom: 12px; font-size: 2rem;"><a href="{% url 'blog:post' post.slug %}">{{ post.title }}</a></h1>
- <p style="line-height: 1.6em;">
- Posted on <em><u>{{ post.date | date:"M d, Y" }}</u></em> by <em><a href="#">{{ post.author }}</a> in <a href="#">{{ post.category }}</a></em>
- </p>
- <hr>
- <div class="article-body">
- <p>
- {{ post.excerpt | safe }}
- </p>
- </div>
- <p><em><a href="{% url 'blog:post' post.slug %}">Click here</a></em> to read more.</p>
- </li>
- {% endfor %}
- <script src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
- {% endif %}
- <br />
- <h3 style="margin-bottom: 0px"><em>Archives</em></h3>
- <hr />
- <ul>
- {% for archive in archives %}
- <li>
- <a href="#">{{ archive | date:"F Y" }}</a>
- </li>
- {% endfor %}
- </ul>
- <br />
- <h3 style="margin-bottom: 0px"><em>Categories</em></h3>
- <hr />
- <ul>
- {% for category in categories %}
- <li>
- <a href="#">{{ category.name }}</a>
- </li>
- {% endfor %}
- </ul>
+ {% if recent_posts %}
+ <h3 style="margin-bottom: 0px"><em>Recent Posts</em></h3>
+ <hr />
+ <ul>
+ {% for post in recent_posts %}
+ <li>
+ <h2 style="margin-bottom: 12px">
+ <a href="{% url 'blog:post' post.slug %}">{{ post.title }}</a>
+ </h2>
+ <p style="line-height: 1.6em">
+ Posted on <em><u>{{ post.date | date:"M d, Y" }}</u></em> by
+ <em
+ ><a href="#">{{ post.author }}</a> in
+ <a href="#">{{ post.category }}</a></em
+ >
+ </p>
+ <div class="article-body">
+ <p>{{ post.excerpt | safe }}</p>
+ </div>
+ <p>
+ <em
+ ><a href="{% url 'blog:post' post.slug %}">Click here</a> to continue
+ reading...</em
+ >
+ </p>
+ </li>
+ {% endfor %}
+ </ul>
+ <script
+ src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/3.2.2/es5/mml-chtml.min.js"
+ integrity="sha512-4JUXEJCjFmGygcGTR/doRQ1Kw7uEYn+kBpiGWyVBzUQHtFSPQNm08E/lqo2/XJqiWKKV0nTpv1q8bHPPDL4n4Q=="
+ crossorigin="anonymous"
+ referrerpolicy="no-referrer"
+ ></script>
+ {% endif %}
+ <br />
+ <h3 style="margin-bottom: 0px"><em>Archives</em></h3>
+ <hr />
+ <ul>
+ {% for archive in archives %}
+ <li>
+ <a href="#">{{ archive | date:"F Y" }}</a>
+ </li>
+ {% endfor %}
+ </ul>
+ <br />
+ <h3 style="margin-bottom: 0px"><em>Categories</em></h3>
+ <hr />
+ <ul>
+ {% for category in categories %}
+ <li>
+ <a href="#">{{ category.name }}</a>
+ </li>
+ {% endfor %}
+ </ul>
</div>
{% endblock %}
diff --git a/templates/blog/post.html b/templates/blog/post.html
index a1b669cb..cb4528b7 100644
--- a/templates/blog/post.html
+++ b/templates/blog/post.html
@@ -62,7 +62,7 @@
{% endif %}
</div>
</article>
- <script src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/3.2.2/es5/mml-chtml.min.js" integrity="sha512-4JUXEJCjFmGygcGTR/doRQ1Kw7uEYn+kBpiGWyVBzUQHtFSPQNm08E/lqo2/XJqiWKKV0nTpv1q8bHPPDL4n4Q==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script>
function editComment(id) {
document.getElementById('comment-body-' + id).style.display = 'none';
diff --git a/templates/blog_admin/edit_post.html b/templates/blog_admin/edit_post.html
index eafac305..7d6bd29d 100644
--- a/templates/blog_admin/edit_post.html
+++ b/templates/blog_admin/edit_post.html
@@ -114,7 +114,7 @@
</form>
</section>
</div>
-<script src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
+<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/3.2.2/es5/mml-chtml.min.js" integrity="sha512-4JUXEJCjFmGygcGTR/doRQ1Kw7uEYn+kBpiGWyVBzUQHtFSPQNm08E/lqo2/XJqiWKKV0nTpv1q8bHPPDL4n4Q==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<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 src="https://cdn.jsdelivr.net/gh/T-vK/DynamicQuillTools@master/DynamicQuillTools.js"></script>