16 lines
472 B
JavaScript
16 lines
472 B
JavaScript
<div id="gitment-ctn"></div>
|
|
<link rel="stylesheet" href="//imsun.github.io/gitment/style/default.css">
|
|
<script src="//imsun.github.io/gitment/dist/gitment.browser.js"></script>
|
|
<script>
|
|
(function(){
|
|
new Gitment({
|
|
id: "<%=url%>",
|
|
owner: '<%=theme.gitment_owner%>',
|
|
repo: '<%=theme.gitment_repo%>',
|
|
oauth: {
|
|
client_id: '<%=theme.gitment_oauth.client_id%>',
|
|
client_secret: '<%=theme.gitment_oauth.client_secret%>'
|
|
}
|
|
}).render('gitment-ctn')
|
|
})()
|
|
</script> |