2021-12-16 20:16:49 +00:00
|
|
|
{% extends "common-content.html" %}
|
|
|
|
|
|
|
|
{% block content_js_media %}
|
|
|
|
{% include "comments/media-js.html" %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content_media %}
|
|
|
|
{% include "comments/media-css.html" %}
|
|
|
|
<style>
|
|
|
|
#comment-header {
|
|
|
|
display: none;
|
|
|
|
}
|
2021-12-16 20:51:45 +00:00
|
|
|
.no-comments-message {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2021-12-16 20:16:49 +00:00
|
|
|
</style>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
{% include "comments/list.html" %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block bodyend %}
|
|
|
|
{% if REQUIRE_JAX %}
|
|
|
|
{% include "mathjax-load.html" %}
|
|
|
|
{% endif %}
|
|
|
|
{% include "comments/math.html" %}
|
|
|
|
{% endblock %}
|