From a0d19ffb7241a1c7a4b85e6d0fd58fbb2f718468 Mon Sep 17 00:00:00 2001 From: Zach Prezkuta Date: Sun, 6 Jan 2013 14:42:51 -0700 Subject: implement Smarty3 --- view/tpl/smarty3/threaded_conversation.tpl | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 view/tpl/smarty3/threaded_conversation.tpl (limited to 'view/tpl/smarty3/threaded_conversation.tpl') diff --git a/view/tpl/smarty3/threaded_conversation.tpl b/view/tpl/smarty3/threaded_conversation.tpl new file mode 100644 index 000000000..e452fc0b5 --- /dev/null +++ b/view/tpl/smarty3/threaded_conversation.tpl @@ -0,0 +1,13 @@ +{{foreach $threads as $thread}} +{{include file="{{$thread.template}}" item=$thread}} +{{/foreach}} + +
+ +{{if $dropping}} + +
+{{/if}} -- cgit v1.2.3 From 4281a95cbcc6a6bc2eae9ec0b393af9b0ec7b739 Mon Sep 17 00:00:00 2001 From: Zach Prezkuta Date: Sun, 6 Jan 2013 16:08:56 -0700 Subject: rebase and update themes --- view/tpl/smarty3/threaded_conversation.tpl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'view/tpl/smarty3/threaded_conversation.tpl') diff --git a/view/tpl/smarty3/threaded_conversation.tpl b/view/tpl/smarty3/threaded_conversation.tpl index e452fc0b5..c20f8a3d6 100644 --- a/view/tpl/smarty3/threaded_conversation.tpl +++ b/view/tpl/smarty3/threaded_conversation.tpl @@ -1,5 +1,7 @@ {{foreach $threads as $thread}} -{{include file="{{$thread.template}}" item=$thread}} +{{foreach $thread.items as $thread_item}} +{{include file="{{$thread_item.template}}" item=$thread_item}} +{{/foreach}} {{/foreach}}
-- cgit v1.2.3