aboutsummaryrefslogtreecommitdiffstats
path: root/nikola/data/themes/base-jinja/templates/comments_helper.tmpl
blob: 2a7d8dcb7c324064fadcd7e88a79030fbe56584a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{#  -*- coding: utf-8 -*- #}

{% import 'comments_helper_disqus.tmpl' as disqus with context %}
{% import 'comments_helper_intensedebate.tmpl' as intensedebate with context %}
{% import 'comments_helper_muut.tmpl' as muut with context %}
{% import 'comments_helper_facebook.tmpl' as facebook with context %}
{% import 'comments_helper_isso.tmpl' as isso with context %}
{% import 'comments_helper_commento.tmpl' as commento with context %}
{% import 'comments_helper_utterances.tmpl' as utterances with context %}

{% macro comment_form(url, title, identifier) %}
    {% if comment_system == 'disqus' %}
        {{ disqus.comment_form(url, title, identifier) }}
    {% elif comment_system == 'intensedebate' %}
        {{ intensedebate.comment_form(url, title, identifier) }}
    {% elif comment_system == 'muut' %}
        {{ muut.comment_form(url, title, identifier) }}
    {% elif comment_system == 'facebook' %}
        {{ facebook.comment_form(url, title, identifier) }}
    {% elif comment_system == 'isso' %}
        {{ isso.comment_form(url, title, identifier) }}
    {% elif comment_system == 'commento' %}
        {{ commento.comment_form(url, title, identifier) }}
    {% elif comment_system == 'utterances' %}
        {{ utterances.comment_form(url, title, identifier) }}
    {% endif %}
{% endmacro %}

{% macro comment_link(link, identifier) %}
    {% if comment_system == 'disqus' %}
        {{ disqus.comment_link(link, identifier) }}
    {% elif comment_system == 'intensedebate' %}
        {{ intensedebate.comment_link(link, identifier) }}
    {% elif comment_system == 'muut' %}
        {{ muut.comment_link(link, identifier) }}
    {% elif comment_system == 'facebook' %}
        {{ facebook.comment_link(link, identifier) }}
    {% elif comment_system == 'isso' %}
        {{ isso.comment_link(link, identifier) }}
    {% elif comment_system == 'commento' %}
        {{ commento.comment_link(link, identifier) }}
    {% elif comment_system == 'utterances' %}
        {{ utterances.comment_link(link, identifier) }}
    {% endif %}
{% endmacro %}

{% macro comment_link_script() %}
    {% if comment_system == 'disqus' %}
        {{ disqus.comment_link_script() }}
    {% elif comment_system == 'intensedebate' %}
        {{ intensedebate.comment_link_script() }}
    {% elif comment_system == 'muut' %}
        {{ muut.comment_link_script() }}
    {% elif comment_system == 'facebook' %}
        {{ facebook.comment_link_script() }}
    {% elif comment_system == 'isso' %}
        {{ isso.comment_link_script() }}
    {% elif comment_system == 'commento' %}
        {{ commento.comment_link_script() }}
    {% elif comment_system == 'utterances' %}
        {{ utterances.comment_link_script() }}
    {% endif %}
{% endmacro %}