diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2012-03-26 09:09:14 +0200 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2012-03-26 09:09:14 +0200 |
commit | 51d419e159de93c6ca7efaa1f1f69dc36eb3cb26 (patch) | |
tree | b89fa1c676e42fbfa8c1ed23e5410ef729db17f7 /view/theme/quattro/conversation.tpl | |
parent | 5b3fe48ec675541fb7bbc3689229056ae840ac14 (diff) | |
download | volse-hubzilla-51d419e159de93c6ca7efaa1f1f69dc36eb3cb26.tar.gz volse-hubzilla-51d419e159de93c6ca7efaa1f1f69dc36eb3cb26.tar.bz2 volse-hubzilla-51d419e159de93c6ca7efaa1f1f69dc36eb3cb26.zip |
themes: use duepuntozero tpls as default
Diffstat (limited to 'view/theme/quattro/conversation.tpl')
-rwxr-xr-x | view/theme/quattro/conversation.tpl | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/view/theme/quattro/conversation.tpl b/view/theme/quattro/conversation.tpl new file mode 100755 index 000000000..ff202bbe4 --- /dev/null +++ b/view/theme/quattro/conversation.tpl @@ -0,0 +1,23 @@ +{{ for $threads as $thread }} +<div id="tread-wrapper-$thread.id" class="tread-wrapper"> + {{ for $thread.items as $item }} + {{if $item.comment_firstcollapsed}} + <div class="hide-comments-outer"> + <span id="hide-comments-total-$thread.id" class="hide-comments-total">$thread.num_comments</span> <span id="hide-comments-$thread.id" class="hide-comments fakelink" onclick="showHideComments($thread.id);">$thread.hide_text</span> + </div> + <div id="collapsed-comments-$thread.id" class="collapsed-comments" style="display: none;"> + {{endif}} + {{if $item.comment_lastcollapsed}}</div>{{endif}} + + {{ inc $item.template }}{{ endinc }} + + + {{ endfor }} +</div> +{{ endfor }} + +{{ if $dropping }} +<a href="#" onclick="deleteCheckedItems();return false;"> + <span class="icon s22 delete text">$dropping</span> +</a> +{{ endif }} |