-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from spotware/dev
Added Github comment to docs
- Loading branch information
Showing
2 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block content %} | ||
{{ super() }} | ||
|
||
<!-- Giscus --> | ||
<h2 id="__comments">{{ lang.t("meta.comments") }}</h2> | ||
<!-- Replace with generated snippet --> | ||
|
||
<script src="https://giscus.app/client.js" | ||
data-repo="spotware/OpenApiPy" | ||
data-repo-id="R_kgDOGZc_9A" | ||
data-category="Announcements" | ||
data-category-id="DIC_kwDOGZc_9M4CAPRV" | ||
data-mapping="pathname" | ||
data-reactions-enabled="1" | ||
data-emit-metadata="0" | ||
data-input-position="top" | ||
data-theme="light" | ||
data-lang="en" | ||
crossorigin="anonymous" | ||
async> | ||
</script> | ||
|
||
<!-- Reload on palette change --> | ||
<script> | ||
var palette = __md_get("__palette") | ||
if (palette && typeof palette.color === "object") | ||
if (palette.color.scheme === "slate") { | ||
var giscus = document.querySelector("script[src*=giscus]") | ||
giscus.setAttribute("data-theme", "dark") | ||
} | ||
|
||
/* Register event handlers after documented loaded */ | ||
document.addEventListener("DOMContentLoaded", function () { | ||
var ref = document.querySelector("[data-md-component=palette]") | ||
ref.addEventListener("change", function () { | ||
var palette = __md_get("__palette") | ||
if (palette && typeof palette.color === "object") { | ||
var theme = palette.color.scheme === "slate" ? "dark_dimmed" : "light" | ||
|
||
/* Instruct Giscus to change theme */ | ||
var frame = document.querySelector(".giscus-frame") | ||
frame.contentWindow.postMessage( | ||
{ giscus: { setConfig: { theme } } }, | ||
"https://giscus.app" | ||
) | ||
} | ||
}) | ||
}) | ||
</script> | ||
{% endblock %} |