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

<%namespace name="comments_helper_impl" file="comments_helper_${context['comment_system']}.tmpl"/>

<%def name="comment_form(url, title, identifier)">
    ${comments_helper_impl.comment_form(url, title, identifier)}
</%def>

<%def name="comment_link(link, identifier)">
    ${comments_helper_impl.comment_link(link, identifier)}
</%def>

<%def name="comment_link_script()">
    ${comments_helper_impl.comment_link_script()}
</%def>