15 lines
422 B
Plaintext
15 lines
422 B
Plaintext
<% if (theme.comment.enable) { %>
|
|
<%- js('js/comment') %>
|
|
<div id="comments" class="comment"></div>
|
|
<script>
|
|
JELON.Comment({
|
|
container: 'comments',
|
|
label: '<%- post.slug %>' || '<%- post.path %>',
|
|
owner: '<%- theme.comment.owner %>',
|
|
repo: '<%- theme.comment.repo %>',
|
|
clientId: '<%- theme.comment.client_id %>',
|
|
clientSecret: '<%- theme.comment.client_secret %>'
|
|
});
|
|
</script>
|
|
<% } %>
|