Last active
December 21, 2015 14:39
-
-
Save ralsina/6320971 to your computer and use it in GitHub Desktop.
Livefyre comments for Nikola
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## -*- coding: utf-8 -*- | |
<%def name="html_disqus(url, title, identifier)"> | |
<!-- START: Livefyre Embed --> | |
<div id="livefyre-comments"></div> | |
<script type="text/javascript" src="http://zor.livefyre.com/wjs/v3.0/javascripts/livefyre.js"></script> | |
<script type="text/javascript"> | |
(function () { | |
var articleId = "${identifier}"; | |
fyre.conv.load({}, [{ | |
el: 'livefyre-comments', | |
network: "livefyre.com", | |
siteId: "${disqus_forum}", | |
articleId: articleId, | |
signed: false, | |
collectionMeta: { | |
articleId: articleId, | |
url: fyre.conv.load.makeCollectionUrl(), | |
} | |
}], function() {}); | |
}()); | |
</script> | |
<!-- END: Livefyre Embed --> | |
</%def> | |
<%def name="html_disqus_link(link, identifier)"> | |
<p> | |
<a href="${link}"> | |
<span class="livefyre-commentcount" data-lf-site-id="${disqus_forum}" data-lf-article-id="${identifier}"> | |
0 Comments | |
</span></a> | |
</%def> | |
<%def name="html_disqus_script()"> | |
<script | |
type="text/javascript" | |
src="http://zor.livefyre.com/wjs/v1.0/javascripts/CommentCount.js"> | |
</script> | |
</%def> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment