mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
428 B
18 lines
428 B
2 years ago
|
main: |
|
||
|
<div id="artalk-container"></div>
|
||
|
head: |
|
||
|
<link href="{{server}}/dist/Artalk.css" rel="stylesheet">
|
||
|
<script src="{{server}}/dist/Artalk.js"></script>
|
||
|
body: |
|
||
|
<script>
|
||
|
window.onload = function() {
|
||
|
new Artalk({
|
||
|
el: '#artalk-container',
|
||
|
pageKey: '{{pageId}}',
|
||
|
pageTitle: '',
|
||
|
server: '{{server}}',
|
||
|
site: '{{siteName}}',
|
||
|
});
|
||
|
};
|
||
|
</script>
|