Fix: isso comments
This commit is contained in:
parent
fe2e34776c
commit
64585c63a3
5 changed files with 44 additions and 39 deletions
5
CHANGES
5
CHANGES
|
@ -2,6 +2,11 @@
|
||||||
Changes
|
Changes
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
2.0.3 (*2021-01-31*)
|
||||||
|
====================
|
||||||
|
|
||||||
|
- Fix isso comments.
|
||||||
|
|
||||||
2.0.2 (*2020-07-31*)
|
2.0.2 (*2020-07-31*)
|
||||||
====================
|
====================
|
||||||
|
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -28,7 +28,7 @@ with open("README.rst", "r") as fh:
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="sphinx_nervproject_theme",
|
name="sphinx_nervproject_theme",
|
||||||
version="2.0.2",
|
version="2.0.3",
|
||||||
url="https://procrastinator.nerv-project.eu/nerv-project/sphinx_nervproject_theme",
|
url="https://procrastinator.nerv-project.eu/nerv-project/sphinx_nervproject_theme",
|
||||||
license="EUPL 1.2",
|
license="EUPL 1.2",
|
||||||
author="Kujiu",
|
author="Kujiu",
|
||||||
|
|
|
@ -5,7 +5,7 @@ from sphinx.environment.collectors import EnvironmentCollector
|
||||||
from sphinx import addnodes
|
from sphinx import addnodes
|
||||||
from sphinx.util.osutil import relative_uri
|
from sphinx.util.osutil import relative_uri
|
||||||
|
|
||||||
__version__ = (2, 0, 2)
|
__version__ = (2, 0, 3)
|
||||||
|
|
||||||
|
|
||||||
class SimpleTocTreeCollector(EnvironmentCollector):
|
class SimpleTocTreeCollector(EnvironmentCollector):
|
||||||
|
|
|
@ -72,6 +72,9 @@
|
||||||
|
|
||||||
{%- include "util/linktags.html" %}
|
{%- include "util/linktags.html" %}
|
||||||
{%- block extrahead %} {% endblock %}
|
{%- block extrahead %} {% endblock %}
|
||||||
|
{% if feed_path %}
|
||||||
|
<link rel="alternate" type="application/atom+xml" href="{{ pathto(feed_path, 1) }}/atom.xml" title="{{ feed_title }}"/>
|
||||||
|
{% endif %}
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
@ -113,6 +116,38 @@
|
||||||
{%- endblock body_header %}
|
{%- endblock body_header %}
|
||||||
<main class="content">
|
<main class="content">
|
||||||
{% block body %} {% endblock %}
|
{% block body %} {% endblock %}
|
||||||
|
{% if builder=='html' %}
|
||||||
|
<div class="section no-print">
|
||||||
|
{% if ablog and pagename in ablog %}
|
||||||
|
{% include "postnavy.html" %}
|
||||||
|
{% include "share.html" %}
|
||||||
|
{% else %}
|
||||||
|
{% if ablog and theme_share_all %}
|
||||||
|
{% include "share.html" %}
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
{% if ablog and ablog.disqus_shortname and ablog.blog_baseurl and
|
||||||
|
(not ablog[pagename].nocomments) and
|
||||||
|
((pagename in ablog and (ablog[pagename].published or
|
||||||
|
ablog.disqus_drafts)) or
|
||||||
|
(not pagename in ablog and ablog.disqus_pages)) %}
|
||||||
|
{% include "util/disqus.html" %}
|
||||||
|
{% endif %}
|
||||||
|
{% if ablog and theme_isso and
|
||||||
|
(not ablog[pagename].nocomments) and
|
||||||
|
((pagename in ablog and (ablog[pagename].published or
|
||||||
|
ablog.disqus_drafts)) or
|
||||||
|
(not pagename in ablog and ablog.disqus_pages)) %}
|
||||||
|
<section class="comments no-print" id="comments">
|
||||||
|
<h2 class="panel">{{ _("Comments") }}</h2>
|
||||||
|
<section id="isso-thread"
|
||||||
|
data-isso-id="{{ pagename }}"
|
||||||
|
data-title="{{ title }}">
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
</main>
|
</main>
|
||||||
{%- endblock %}
|
{%- endblock %}
|
||||||
{%- include "util/pagenav.html" %}
|
{%- include "util/pagenav.html" %}
|
||||||
|
|
|
@ -1,43 +1,8 @@
|
||||||
{%- extends "layout.html" %}
|
{% extends "!layout.html" %}
|
||||||
{%- block extrahead %}
|
{% block extrahead %}
|
||||||
{{ super() }}
|
{{ super() }}
|
||||||
{% if feed_path %}
|
|
||||||
<link rel="alternate" type="application/atom+xml" href="{{ pathto(feed_path, 1) }}/atom.xml" title="{{ feed_title }}"/>
|
|
||||||
{% endif %}
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block body %}
|
{% block body %}
|
||||||
{{ body }}
|
{{ body }}
|
||||||
{% if builder=='html' %}
|
|
||||||
<div class="section no-print">
|
|
||||||
{% if ablog and pagename in ablog %}
|
|
||||||
{% include "postnavy.html" %}
|
|
||||||
{% include "share.html" %}
|
|
||||||
{% else %}
|
|
||||||
{% if ablog and theme_share_all %}
|
|
||||||
{% include "share.html" %}
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
{% if ablog and ablog.disqus_shortname and ablog.blog_baseurl and
|
|
||||||
(not ablog[pagename].nocomments) and
|
|
||||||
((pagename in ablog and (ablog[pagename].published or
|
|
||||||
ablog.disqus_drafts)) or
|
|
||||||
(not pagename in ablog and ablog.disqus_pages)) %}
|
|
||||||
{% include "util/disqus.html" %}
|
|
||||||
{% endif %}
|
|
||||||
{% if ablog and theme_isso and
|
|
||||||
(not ablog[pagename].nocomments) and
|
|
||||||
((pagename in ablog and (ablog[pagename].published or
|
|
||||||
ablog.disqus_drafts)) or
|
|
||||||
(not pagename in ablog and ablog.disqus_pages)) %}
|
|
||||||
<section class="comments no-print" id="comments">
|
|
||||||
<h2 class="panel">{{ _("Comments") }}</h2>
|
|
||||||
<section id="isso-thread"
|
|
||||||
data-isso-id="{{ pagename }}"
|
|
||||||
data-title="{{ title }}">
|
|
||||||
</section>
|
|
||||||
</section>
|
|
||||||
{% endif %}
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Loading…
Reference in a new issue