aboutsummaryrefslogtreecommitdiffstats
path: root/nikola/data/themes/base-jinja/templates/comments_helper.tmpl
blob: 4b5048513dc4a77c7cce600a05d35ef9122bc170 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{#  -*- coding: utf-8 -*- #}

{% import 'comments_helper_%s.tmpl' % comment_system as comments_helper_impl with context %}

{% macro comment_form(url, title, identifier) %}
    {{ comments_helper_impl.comment_form(url, title, identifier) }}
{% endmacro %}

{% macro comment_link(link, identifier) %}
    {{ comments_helper_impl.comment_link(link, identifier) }}
{% endmacro %}

{% macro comment_link_script() %}
    {{ comments_helper_impl.comment_link_script() }}
{% endmacro %}