my website, hosted on wisp.place
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: behold...

this should work i really hope so and if not im crying

intergrav 40bd1c5b c39f941d

+23 -27
+20
src/components/Comments.astro
··· 1 + <section class="giscus"></section> 2 + <script> 3 + document.addEventListener("astro:page-load", () => { 4 + const script = document.createElement("script"); 5 + script.src = "https://giscus.app/client.js"; 6 + script.setAttribute("data-repo", "intergrav/devins.page"); 7 + script.setAttribute("data-repo-id", "R_kgDONW1wiA"); 8 + script.setAttribute("data-category", "giscus"); 9 + script.setAttribute("data-category-id", "DIC_kwDONW1wiM4Cr7lb"); 10 + script.setAttribute("data-mapping", "pathname"); 11 + script.setAttribute("data-strict", "1"); 12 + script.setAttribute("data-reactions-enabled", "0"); 13 + script.setAttribute("data-emit-metadata", "1"); 14 + script.setAttribute("data-input-position", "bottom"); 15 + script.setAttribute("data-theme", "https://devins.page/sc-giscus.css"); 16 + script.setAttribute("data-lang", "en"); 17 + script.crossOrigin = "anonymous"; 18 + document.body.appendChild(script); 19 + }); 20 + </script>
+1 -1
src/content/blog/git-bisect.md
··· 1 1 --- 2 2 title: "git bisect is very useful" 3 - description: "using binary search to find the commit that broke things" 3 + description: "use binary search to find the commit that broke things" 4 4 image: "/blog/git-bisect.svg" 5 5 imageAlt: "the git logo" 6 6 pubDate: 2025-06-25
+2 -26
src/layouts/Layout.astro
··· 1 1 --- 2 2 import "@intergrav/slight.css"; 3 3 import "../styles/global.css"; 4 + import Comments from "../components/Comments.astro"; 4 5 import Header from "../components/Header.astro"; 5 6 import Footer from "../components/Footer.astro"; 6 7 import { ClientRouter } from "astro:transitions"; ··· 69 70 <section> 70 71 <slot /> 71 72 </section> 72 - <section class="giscus"></section> 73 + <Comments /> 73 74 </main> 74 75 <Footer /> 75 76 </body> 76 77 </html> 77 - 78 - <script is:inline data-astro-rerun defer> 79 - (function () { 80 - function loadGiscus() { 81 - var s = document.createElement("script"); 82 - s.src = "https://giscus.app/client.js"; 83 - s.async = true; 84 - s.crossOrigin = "anonymous"; 85 - s.setAttribute("data-repo", "intergrav/devins.page"); 86 - s.setAttribute("data-repo-id", "R_kgDONW1wiA"); 87 - s.setAttribute("data-category", "giscus"); 88 - s.setAttribute("data-category-id", "DIC_kwDONW1wiM4Cr7lb"); 89 - s.setAttribute("data-mapping", "pathname"); 90 - s.setAttribute("data-strict", "1"); 91 - s.setAttribute("data-reactions-enabled", "0"); 92 - s.setAttribute("data-emit-metadata", "0"); 93 - s.setAttribute("data-input-position", "bottom"); 94 - s.setAttribute("data-theme", "https://devins.page/sc-giscus.css"); 95 - s.setAttribute("data-lang", "en"); 96 - s.setAttribute("data-loading", "lazy"); 97 - document.body.appendChild(s); 98 - } 99 - loadGiscus(); 100 - })(); 101 - </script>