diff options
author | luxagraf <sng@luxagraf.net> | 2019-04-12 20:11:23 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2019-04-12 20:11:23 -0500 |
commit | 55adc26c6987dc2e8585dd53ef4b8c05753b526d (patch) | |
tree | fe6693b1a5ae1372330ab118639d409c98206bbe /design/templates/jrnl | |
parent | 7d35c8dd5e28e52947a74b204f5eb53876bb383f (diff) |
fixed favicon link
Diffstat (limited to 'design/templates/jrnl')
-rw-r--r-- | design/templates/jrnl/entry_detail.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/design/templates/jrnl/entry_detail.html b/design/templates/jrnl/entry_detail.html index 577de8e..0bdab58 100644 --- a/design/templates/jrnl/entry_detail.html +++ b/design/templates/jrnl/entry_detail.html @@ -149,7 +149,6 @@ class="detail {%if t == 1 or t == 3 or t == 5 %}double{%else%}single{%endif%}{%i <h5>If you enjoyed this, you should join the mailing list…</h5> {% include 'mailing_list.html' %} </div> {% endcomment %} - </main> {% if object.enable_comments %} {% get_comment_count for object as comment_count %} {%if comment_count > 0 %} @@ -160,6 +159,7 @@ class="detail {%if t == 1 or t == 3 or t == 5 %}double{%else%}single{%endif%}{%i {% else %} <p class="comments--header" style="text-align: center">Sorry, comments have been disabled for this post.</p> {%endif%} +</main> {% endblock %} {% block js %} <script> @@ -209,6 +209,7 @@ document.addEventListener("DOMContentLoaded", function(event) { var img = document.createElement("img"); img.src = 'https://images.luxagraf.net/gravcache/' + dataattr[i].getAttribute('data-hash') + '.jpg'; img.className += "gravatar"; + img.alt = "gravatar icon"; c.insertBefore(img, c.childNodes[3]); } {%endif%} |