mirror of
https://github.com/Colin-XKL/Colinx-Blog.git
synced 2026-01-11 18:21:28 +08:00
21 lines
814 B
HTML
21 lines
814 B
HTML
<div id="gitalk-container" style="
|
|
margin: 20px auto;
|
|
max-width: 800px;
|
|
padding: 20px;
|
|
width: 100%;
|
|
text-align: left;
|
|
"></div>
|
|
<script src="https://cdn.jsdelivr.net/npm/gitalk@1/dist/gitalk.min.js"></script>
|
|
<script>
|
|
const gitalk = new Gitalk({
|
|
clientID: '94eae56b89dcc480bf4d',
|
|
clientSecret: '1e4218c0293a998a9483ab09ba9ace46cabc76b3',
|
|
repo: 'Colinx-Blog', // The repository of store comments,
|
|
owner: 'Colin-XKL',
|
|
admin: ['Colin-XKL'],
|
|
id: decodeURI(location.pathname), // Ensure uniqueness and length less than 50
|
|
distractionFreeMode: false // Facebook-like distraction free mode
|
|
});
|
|
gitalk.render('gitalk-container');
|
|
</script>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/gitalk@1/dist/gitalk.min.css"> |