diff options
Added basic isso commenting system integration
* [isso](http://posativ.org/isso/) is a Disqus like commenting system written in Python
** self-hosted i.e. no privacy implications
** lightweight and provides all the features I require for this blog
* I thought about implementing a commenting system in InputXSLT but sadly I just don't have the time to think of and implement a reasonable XSLT based solution
** maybe a simple REST service for pushing XML from the client into article-dependend comment directories can be implemented in the future
* added basic CSS styling for isso comments simmilar to how they currently look in the old Symphony CMS based blog
Diffstat (limited to 'source/99_result/article')
| -rw-r--r-- | source/99_result/article/article.xsl | 8 | 
1 files changed, 7 insertions, 1 deletions
diff --git a/source/99_result/article/article.xsl b/source/99_result/article/article.xsl index b3046b5..656c136 100644 --- a/source/99_result/article/article.xsl +++ b/source/99_result/article/article.xsl @@ -18,7 +18,7 @@  </xsl:template>  <xsl:template match="article/entry"> -	<div class="last article"> +	<div class="article">  		<h2>  			<xsl:text>ยป </xsl:text>  			<a href="{$url}/article/{@handle}"> @@ -41,6 +41,12 @@  		</p>  		<xsl:copy-of select="content/node()"/>  	</div> + +	<div id="isso-thread"></div> + +	<script type="text/javascript" src="/comments/js/embed.min.js" data-isso-avatar="false" data-isso-vote="false" data-isso-css="false"> +		<xsl:text> </xsl:text> +	</script>  </xsl:template>  </xsl:stylesheet>  | 
