blob: 8dc95f56da6801853d43f04ff0beb02088ac6696 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
## -*- coding: utf-8 -*-
<%def name="comment_form(url, title, identifier)">
%if comment_system_id:
<div data-title="${title|u}" id="isso-thread"></div>
<script src="${comment_system_id}js/embed.min.js" data-isso="${comment_system_id}"></script>
%endif
</%def>
<%def name="comment_link(link, identifier)">
%if comment_system_id:
<a href="${link}#isso-thread">Comments</a>
%endif
</%def>
<%def name="comment_link_script()">
%if comment_system_id:
<script src="${comment_system_id}js/count.min.js" data-isso="${comment_system_id}"></script>
%endif
</%def>
|