isso/docs/index.html
Martin Zimmermann a29393ee3f replace kriskowal/q with 50 LoC homebrew implementation, part of #51
As a result, it is no longer possible to chain promises
(then().then().then(etc.)), but that is actually not an issue for Isso.

The deferred/promise implementation is roughly based on
http://stackoverflow.com/a/17722683 and stackp/promisejs.
2014-01-07 14:28:10 +01:00

61 lines
2.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{%- extends "layout.html" %}
{% set title = "Isso a commenting server similar to Disqus" %}
{% block extrahead %}
<script data-isso="//posativ.org/isso/api/"
src="//posativ.org/isso/api/js/embed.min.js"></script>
{% endblock %}
{% block header %}
<div class="index">
<figure class="duty-call">
<a href="http://xkcd.com/386/">
<img src="{{ pathto('_static/duty_calls.png', 1) }}" alt="XKCD Duty Calls"/>
</a>
<figcaption>by Randall Munroe, CC BY-NC 2.5</figcaption>
</figure>
<ul>
<li>
<p><strong>Create, Edit and Remove Comments</strong></p>
<p>Commenters can edit or delete their own comments (within
15 minutes by default).</p>
<p>Comments in moderation queue are not publicly visible until
activation.</p>
</li>
<li>
<p><strong>SQLite backend</strong></p>
<p>Because comments are not Big Data.</p>
</li>
<li>
<p><strong>Disqus Import</strong></p>
<p>You can migrate your Disqus comments without any hassle.</p>
</li>
<li>
<p><strong>client-side JavaScript</strong></p>
<p>Embed a single JS file, 52kb (16kb gzipped) and you are
done.</p>
<p>Supports Firefox, Safari, Chrome and IE10.</p>
</li>
</ul>
</div>
{% endblock %}
{% block body %}
<div class="links">
<h2>Links</h2>
<ul>
<li><a href="https://pypi.python.org/pypi/isso/">Isso @ PyPi</a></li>
<li><a href="https://github.com/posativ/isso/">Isso @ GitHub</a></li>
</ul>
<h2>Help</h2>
<p>
Join <a href="http://webchat.freenode.net/?channels=isso">
<code>#isso</code></a> on <a href="http://freenode.net/">Freenode</a>
or open an issue on <a href="https://github.com/posativ/isso/issues">GitHub</a>.
</p>
{% include "searchbox.html" %}
</div>
<div class="demo">
<h2>Demo</h2>
<section id="isso-thread"></section>
</div>
{% endblock %}