Fix 2nd edition template errors accidentally introduced by merge

This commit is contained in:
Philipp Oppermann
2022-01-23 21:29:25 +01:00
parent f6d06bcf67
commit 6f1b982f3a
5 changed files with 13 additions and 12 deletions

View File

@@ -1,6 +1,6 @@
{% extends "edition-2/base.html" %} {% extends "edition-2/base.html" %}
{% import "edition-2/macros.html" as macros %} {% import "snippets.html" as snippets %}
{% block title %}{{ page.title }} | {{ config.title }}{% endblock title %} {% block title %}{{ page.title }} | {{ config.title }}{% endblock title %}

View File

@@ -43,12 +43,3 @@
</details> </details>
{% endmacro toc %} {% endmacro toc %}
{% macro utterances() %}
<script src="https://utteranc.es/client.js"
data-repo="phil-opp/blog_os"
data-issue-term="url"
data-label="comments"
crossorigin="anonymous"
async>
</script>
{% endmacro utterances %}

View File

@@ -1,6 +1,6 @@
{% extends "edition-2/base.html" %} {% extends "edition-2/base.html" %}
{% import "edition-2/macros.html" as macros %} {% import "snippets.html" as snippets %}
{% block title %}{{ page.title }} | {{ config.title }}{% endblock title %} {% block title %}{{ page.title }} | {{ config.title }}{% endblock title %}
@@ -17,7 +17,7 @@
<hr> <hr>
<section> <section>
<h2 id="comments">Comments</h2> <h2 id="comments">Comments</h2>
{{ macros::utterances() }} {{ snippets::giscus(search_term=page.title ~ " (News Post)") }}
</section> </section>
{% endblock after_main %} {% endblock after_main %}

View File

@@ -25,6 +25,7 @@
<div class="giscus"></div> <div class="giscus"></div>
<script src="https://giscus.app/client.js" <script src="https://giscus.app/client.js"
data-repo="phil-opp/blog_os"
data-repo-id="MDEwOlJlcG9zaXRvcnkzOTU3NTEwMQ==" data-repo-id="MDEwOlJlcG9zaXRvcnkzOTU3NTEwMQ=="
data-category="Post Comments" data-category="Post Comments"
data-category-id="MDE4OkRpc2N1c3Npb25DYXRlZ29yeTMzMDE4OTg1" data-category-id="MDE4OkRpc2N1c3Npb25DYXRlZ29yeTMzMDE4OTg1"
@@ -37,6 +38,9 @@
data-reactions-enabled="1" data-reactions-enabled="1"
data-emit-metadata="1" data-emit-metadata="1"
data-theme="preferred_color_scheme" data-theme="preferred_color_scheme"
crossorigin="anonymous"
async>
</script>
<p class="comment-directly-on-github"> <p class="comment-directly-on-github">
Instead of authenticating the <a href="https://giscus.app">giscus</a> application, you can also comment directly <a href="{{ discussion_url | safe }}"><em>on GitHub</em></a>. Instead of authenticating the <a href="https://giscus.app">giscus</a> application, you can also comment directly <a href="{{ discussion_url | safe }}"><em>on GitHub</em></a>.

View File

@@ -1,5 +1,7 @@
{% extends "base.html" %} {% extends "base.html" %}
{% import "snippets.html" as snippets %}
{% block title %}{{ page.title }} | {{ config.title }}{% endblock title %} {% block title %}{{ page.title }} | {{ config.title }}{% endblock title %}
{% block main %} {% block main %}
@@ -27,6 +29,10 @@
<a class="next" href="{{ page.later.path | safe }}">{{ page.later.title }} &raquo;</a> <a class="next" href="{{ page.later.path | safe }}">{{ page.later.title }} &raquo;</a>
{% endif %} {% endif %}
</div> </div>
<hr>
<section>
<h2 id="comments">Comments</h2>
{{ snippets::giscus(search_term=page.title) }} {{ snippets::giscus(search_term=page.title) }}
</section>
{% endblock after_main %} {% endblock after_main %}