From df31cd6285bb866841cc2c50841b6ccf35a4cde1 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Mon, 18 Feb 2013 10:10:46 -0500 Subject: [PATCH] blog theme smarty templates --- view/theme/blog/smarty3/admin_aside.tpl | 54 +++ view/theme/blog/smarty3/admin_logs.tpl | 24 ++ view/theme/blog/smarty3/admin_plugins.tpl | 20 + .../blog/smarty3/admin_plugins_details.tpl | 41 ++ .../theme/blog/smarty3/admin_remoteupdate.tpl | 103 ++++++ view/theme/blog/smarty3/admin_site.tpl | 113 ++++++ view/theme/blog/smarty3/admin_summary.tpl | 46 +++ view/theme/blog/smarty3/admin_users.tpl | 105 ++++++ view/theme/blog/smarty3/comment_item.tpl | 34 ++ view/theme/blog/smarty3/common_tabs.tpl | 10 + view/theme/blog/smarty3/config.tpl | 14 + view/theme/blog/smarty3/contact_template.tpl | 14 + view/theme/blog/smarty3/contacts-head.tpl | 22 ++ view/theme/blog/smarty3/contacts-template.tpl | 31 ++ view/theme/blog/smarty3/directory_end.tpl | 6 + view/theme/blog/smarty3/directory_header.tpl | 21 ++ view/theme/blog/smarty3/directory_item.tpl | 11 + view/theme/blog/smarty3/end.tpl | 6 + view/theme/blog/smarty3/field_input.tpl | 11 + view/theme/blog/smarty3/jot-end.tpl | 5 + view/theme/blog/smarty3/jot-header.tpl | 349 ++++++++++++++++++ view/theme/blog/smarty3/jot.tpl | 69 ++++ view/theme/blog/smarty3/jot_geotag.tpl | 13 + view/theme/blog/smarty3/nav.tpl | 109 ++++++ .../blog/smarty3/profile-hide-friends.tpl | 13 + view/theme/blog/smarty3/profile-hide-wall.tpl | 21 ++ view/theme/blog/smarty3/profile_advanced.tpl | 176 +++++++++ view/theme/blog/smarty3/profile_edit.tpl | 240 ++++++++++++ view/theme/blog/smarty3/profile_edlink.tpl | 5 + view/theme/blog/smarty3/profile_entry.tpl | 10 + .../blog/smarty3/profile_listing_header.tpl | 11 + view/theme/blog/smarty3/profile_vcard.tpl | 70 ++++ view/theme/blog/smarty3/removeme.tpl | 25 ++ view/theme/blog/smarty3/search_item.tpl | 39 ++ view/theme/blog/smarty3/settings.tpl | 154 ++++++++ view/theme/blog/smarty3/settings_addons.tpl | 17 + .../blog/smarty3/settings_connectors.tpl | 42 +++ view/theme/blog/smarty3/settings_display.tpl | 29 ++ view/theme/blog/smarty3/settings_features.tpl | 27 ++ view/theme/blog/smarty3/settings_nick_set.tpl | 6 + .../blog/smarty3/settings_nick_subdir.tpl | 11 + view/theme/blog/smarty3/settings_oauth.tpl | 33 ++ .../blog/smarty3/settings_oauth_edit.tpl | 24 ++ .../blog/smarty3/threaded_conversation.tpl | 49 +++ view/theme/blog/smarty3/uexport.tpl | 16 + view/theme/blog/smarty3/wall_thread.tpl | 127 +++++++ .../blog/smarty3/wall_thread_comment.tpl | 43 +++ 47 files changed, 2419 insertions(+) create mode 100644 view/theme/blog/smarty3/admin_aside.tpl create mode 100644 view/theme/blog/smarty3/admin_logs.tpl create mode 100644 view/theme/blog/smarty3/admin_plugins.tpl create mode 100644 view/theme/blog/smarty3/admin_plugins_details.tpl create mode 100644 view/theme/blog/smarty3/admin_remoteupdate.tpl create mode 100644 view/theme/blog/smarty3/admin_site.tpl create mode 100644 view/theme/blog/smarty3/admin_summary.tpl create mode 100644 view/theme/blog/smarty3/admin_users.tpl create mode 100644 view/theme/blog/smarty3/comment_item.tpl create mode 100644 view/theme/blog/smarty3/common_tabs.tpl create mode 100644 view/theme/blog/smarty3/config.tpl create mode 100644 view/theme/blog/smarty3/contact_template.tpl create mode 100644 view/theme/blog/smarty3/contacts-head.tpl create mode 100644 view/theme/blog/smarty3/contacts-template.tpl create mode 100644 view/theme/blog/smarty3/directory_end.tpl create mode 100644 view/theme/blog/smarty3/directory_header.tpl create mode 100644 view/theme/blog/smarty3/directory_item.tpl create mode 100644 view/theme/blog/smarty3/end.tpl create mode 100644 view/theme/blog/smarty3/field_input.tpl create mode 100644 view/theme/blog/smarty3/jot-end.tpl create mode 100644 view/theme/blog/smarty3/jot-header.tpl create mode 100644 view/theme/blog/smarty3/jot.tpl create mode 100644 view/theme/blog/smarty3/jot_geotag.tpl create mode 100644 view/theme/blog/smarty3/nav.tpl create mode 100644 view/theme/blog/smarty3/profile-hide-friends.tpl create mode 100644 view/theme/blog/smarty3/profile-hide-wall.tpl create mode 100644 view/theme/blog/smarty3/profile_advanced.tpl create mode 100644 view/theme/blog/smarty3/profile_edit.tpl create mode 100644 view/theme/blog/smarty3/profile_edlink.tpl create mode 100644 view/theme/blog/smarty3/profile_entry.tpl create mode 100644 view/theme/blog/smarty3/profile_listing_header.tpl create mode 100644 view/theme/blog/smarty3/profile_vcard.tpl create mode 100644 view/theme/blog/smarty3/removeme.tpl create mode 100644 view/theme/blog/smarty3/search_item.tpl create mode 100644 view/theme/blog/smarty3/settings.tpl create mode 100644 view/theme/blog/smarty3/settings_addons.tpl create mode 100644 view/theme/blog/smarty3/settings_connectors.tpl create mode 100644 view/theme/blog/smarty3/settings_display.tpl create mode 100644 view/theme/blog/smarty3/settings_features.tpl create mode 100644 view/theme/blog/smarty3/settings_nick_set.tpl create mode 100644 view/theme/blog/smarty3/settings_nick_subdir.tpl create mode 100644 view/theme/blog/smarty3/settings_oauth.tpl create mode 100644 view/theme/blog/smarty3/settings_oauth_edit.tpl create mode 100644 view/theme/blog/smarty3/threaded_conversation.tpl create mode 100644 view/theme/blog/smarty3/uexport.tpl create mode 100644 view/theme/blog/smarty3/wall_thread.tpl create mode 100644 view/theme/blog/smarty3/wall_thread_comment.tpl diff --git a/view/theme/blog/smarty3/admin_aside.tpl b/view/theme/blog/smarty3/admin_aside.tpl new file mode 100644 index 0000000..42ccfa8 --- /dev/null +++ b/view/theme/blog/smarty3/admin_aside.tpl @@ -0,0 +1,54 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + +
+

{{$admtxt}}

+ + + {{if $admin.update}} + + {{/if}} + +
+ +{{if $admin.plugins_admin}} +
+

{{$plugadmtxt}}

+ +
+{{/if}} + +
+

{{$logtxt}}

+ + +
diff --git a/view/theme/blog/smarty3/admin_logs.tpl b/view/theme/blog/smarty3/admin_logs.tpl new file mode 100644 index 0000000..7dde346 --- /dev/null +++ b/view/theme/blog/smarty3/admin_logs.tpl @@ -0,0 +1,24 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+

{{$title}} - {{$page}}

+ +
+ + + {{include file="field_checkbox.tpl" field=$debugging}} + {{include file="field_input.tpl" field=$logfile}} + {{include file="field_select.tpl" field=$loglevel}} + +
+ +
+ +

{{$logname}}

+
{{$data}}
+ + +
diff --git a/view/theme/blog/smarty3/admin_plugins.tpl b/view/theme/blog/smarty3/admin_plugins.tpl new file mode 100644 index 0000000..d41362c --- /dev/null +++ b/view/theme/blog/smarty3/admin_plugins.tpl @@ -0,0 +1,20 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+

{{$title}} - {{$page}}

+ + +
diff --git a/view/theme/blog/smarty3/admin_plugins_details.tpl b/view/theme/blog/smarty3/admin_plugins_details.tpl new file mode 100644 index 0000000..9f987a7 --- /dev/null +++ b/view/theme/blog/smarty3/admin_plugins_details.tpl @@ -0,0 +1,41 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+

{{$title}} - {{$page}}

+ +

{{$info.name}} - {{$info.version}} : {{$action}}

+

{{$info.description}}

+ +

{{$str_author}} + {{foreach $info.author as $a}} + {{if $a.link}}{{$a.name}}{{else}}{{$a.name}}{{/if}}, + {{/foreach}} +

+ +

{{$str_maintainer}} + {{foreach $info.maintainer as $a}} + {{if $a.link}}{{$a.name}}{{else}}{{$a.name}}{{/if}}, + {{/foreach}} +

+ + {{if $screenshot}} + {{$screenshot.1}} + {{/if}} + + {{if $admin_form}} +

{{$settings}}

+
+ {{$admin_form}} +
+ {{/if}} + + {{if $readme}} +

Readme

+
+ {{$readme}} +
+ {{/if}} +
diff --git a/view/theme/blog/smarty3/admin_remoteupdate.tpl b/view/theme/blog/smarty3/admin_remoteupdate.tpl new file mode 100644 index 0000000..cee0ef9 --- /dev/null +++ b/view/theme/blog/smarty3/admin_remoteupdate.tpl @@ -0,0 +1,103 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + + + +
+
Your version:
{{$localversion}}
+{{if $needupdate}} +
New version:
{{$remoteversion}}
+ +
+ + + {{if $canwrite}} +
+ {{else}} +

Your friendica installation is not writable by web server.

+ {{if $canftp}} +

You can try to update via FTP

+ {{include file="field_input.tpl" field=$ftphost}} + {{include file="field_input.tpl" field=$ftppath}} + {{include file="field_input.tpl" field=$ftpuser}} + {{include file="field_password.tpl" field=$ftppwd}} +
+ {{/if}} + {{/if}} +
+{{else}} +

No updates

+{{/if}} +
diff --git a/view/theme/blog/smarty3/admin_site.tpl b/view/theme/blog/smarty3/admin_site.tpl new file mode 100644 index 0000000..5db5dac --- /dev/null +++ b/view/theme/blog/smarty3/admin_site.tpl @@ -0,0 +1,113 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + +
+

{{$title}} - {{$page}}

+ +
+ + + {{include file="field_input.tpl" field=$sitename}} + {{include file="field_textarea.tpl" field=$banner}} + {{include file="field_select.tpl" field=$language}} + {{include file="field_select.tpl" field=$theme}} + {{include file="field_select.tpl" field=$theme_mobile}} + {{include file="field_select.tpl" field=$ssl_policy}} + {{include file="field_checkbox.tpl" field=$new_share}} + + +
+ +

{{$registration}}

+ {{include file="field_input.tpl" field=$register_text}} + {{include file="field_select.tpl" field=$register_policy}} + {{include file="field_input.tpl" field=$daily_registrations}} + {{include file="field_checkbox.tpl" field=$no_multi_reg}} + {{include file="field_checkbox.tpl" field=$no_openid}} + {{include file="field_checkbox.tpl" field=$no_regfullname}} + +
+ +

{{$upload}}

+ {{include file="field_input.tpl" field=$maximagesize}} + {{include file="field_input.tpl" field=$maximagelength}} + {{include file="field_input.tpl" field=$jpegimagequality}} + +

{{$corporate}}

+ {{include file="field_input.tpl" field=$allowed_sites}} + {{include file="field_input.tpl" field=$allowed_email}} + {{include file="field_checkbox.tpl" field=$block_public}} + {{include file="field_checkbox.tpl" field=$force_publish}} + {{include file="field_checkbox.tpl" field=$no_community_page}} + {{include file="field_checkbox.tpl" field=$ostatus_disabled}} + {{include file="field_checkbox.tpl" field=$diaspora_enabled}} + {{include file="field_checkbox.tpl" field=$dfrn_only}} + {{include file="field_input.tpl" field=$global_directory}} + {{include file="field_checkbox.tpl" field=$thread_allow}} + {{include file="field_checkbox.tpl" field=$newuser_private}} + +
+ +

{{$advanced}}

+ {{include file="field_checkbox.tpl" field=$no_utf}} + {{include file="field_checkbox.tpl" field=$verifyssl}} + {{include file="field_input.tpl" field=$proxy}} + {{include file="field_input.tpl" field=$proxyuser}} + {{include file="field_input.tpl" field=$timeout}} + {{include file="field_input.tpl" field=$delivery_interval}} + {{include file="field_input.tpl" field=$poll_interval}} + {{include file="field_input.tpl" field=$maxloadavg}} + {{include file="field_input.tpl" field=$abandon_days}} + {{include file="field_input.tpl" field=$lockpath}} + {{include file="field_input.tpl" field=$temppath}} + {{include file="field_input.tpl" field=$basepath}} + +

{{$performance}}

+ {{include file="field_checkbox.tpl" field=$use_fulltext_engine}} + {{include file="field_input.tpl" field=$itemcache}} + {{include file="field_input.tpl" field=$itemcache_duration}} + + +
+ +
+
diff --git a/view/theme/blog/smarty3/admin_summary.tpl b/view/theme/blog/smarty3/admin_summary.tpl new file mode 100644 index 0000000..aa60135 --- /dev/null +++ b/view/theme/blog/smarty3/admin_summary.tpl @@ -0,0 +1,46 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+

{{$title}} - {{$page}}

+ + + + + + + + + + + + + + + {{foreach $accounts as $p}} + + + + + {{/foreach}} + + + + + + + + + + + + +
{{$queues.label}}{{$queues.deliverq}} - {{$queues.queue}}
{{$pending.0}}{{$pending.1}}
{{$users.0}}{{$users.1}}
{{$p.0}}{{if $p.1}}{{$p.1}}{{else}}0{{/if}}
{{$plugins.0}} + {{foreach $plugins.1 as $p}} + {{$p}}
+ {{/foreach}} +
{{$version.0}}{{$version.1}} - {{$build}}
+ +
diff --git a/view/theme/blog/smarty3/admin_users.tpl b/view/theme/blog/smarty3/admin_users.tpl new file mode 100644 index 0000000..d717192 --- /dev/null +++ b/view/theme/blog/smarty3/admin_users.tpl @@ -0,0 +1,105 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + +
+

{{$title}} - {{$page}}

+ +
+ + +

{{$h_pending}}

+ {{if $pending}} + + + + {{foreach $th_pending as $th}}{{/foreach}} + + + + + + {{foreach $pending as $u}} + + + + + + + + {{/foreach}} + +
{{$th}}
{{$u.created}}{{$u.name}} + + +
+ +
+ {{else}} +

{{$no_pending}}

+ {{/if}} + + + + +

{{$h_users}}

+ {{if $users}} + + + + + {{foreach $th_users as $th}}{{/foreach}} + + + + + + {{foreach $users as $u}} + + + + + + + + + + {{/if}} + + + {{/foreach}} + +
{{$th}}
{{$u.nickname}}{{$u.name}}{{$u.register_date}}{{$u.lastitem_date}} + {{if $u.is_admin}} +   + {{else}} + + {{if $u.is_admin}} +   + {{else}} + + + {{/if}} +
+ + {{else}} + NO USERS?!? + {{/if}} +
+ diff --git a/view/theme/blog/smarty3/comment_item.tpl b/view/theme/blog/smarty3/comment_item.tpl new file mode 100644 index 0000000..b8015c2 --- /dev/null +++ b/view/theme/blog/smarty3/comment_item.tpl @@ -0,0 +1,34 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+
+

+ Leave a Reply +

+
+ + + + + + + + + +

+ + +

+ +

+ + {{if $preview}}{{$preview}}{{/if}} +

+
+ +
+ +
\ No newline at end of file diff --git a/view/theme/blog/smarty3/common_tabs.tpl b/view/theme/blog/smarty3/common_tabs.tpl new file mode 100644 index 0000000..dd79cde --- /dev/null +++ b/view/theme/blog/smarty3/common_tabs.tpl @@ -0,0 +1,10 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + diff --git a/view/theme/blog/smarty3/config.tpl b/view/theme/blog/smarty3/config.tpl new file mode 100644 index 0000000..91a8cc0 --- /dev/null +++ b/view/theme/blog/smarty3/config.tpl @@ -0,0 +1,14 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + +{{include file="field_select.tpl" field=$headimg}} + +{{include file="field_yesno.tpl" field=$headimghome}} + +
+ +
+ diff --git a/view/theme/blog/smarty3/contact_template.tpl b/view/theme/blog/smarty3/contact_template.tpl new file mode 100644 index 0000000..5a23e6a --- /dev/null +++ b/view/theme/blog/smarty3/contact_template.tpl @@ -0,0 +1,14 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+ {{$contact.name}} + + {{if $contact.photo_menu}} + + {{/if}} +
diff --git a/view/theme/blog/smarty3/contacts-head.tpl b/view/theme/blog/smarty3/contacts-head.tpl new file mode 100644 index 0000000..d525e83 --- /dev/null +++ b/view/theme/blog/smarty3/contacts-head.tpl @@ -0,0 +1,22 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + + + + + diff --git a/view/theme/blog/smarty3/contacts-template.tpl b/view/theme/blog/smarty3/contacts-template.tpl new file mode 100644 index 0000000..90a6c17 --- /dev/null +++ b/view/theme/blog/smarty3/contacts-template.tpl @@ -0,0 +1,31 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+

{{$header}}{{if $total}} ({{$total}}){{/if}}

+ + {{if $finding}}

{{$finding}}

{{/if}} + +
+
+ {{$desc}} + + +
+
+ + {{$tabs}} + + + {{foreach $contacts as $contact}} + {{include file="contact_template.tpl"}} + {{/foreach}} +
+ + {{$paginate}} + + +
+ diff --git a/view/theme/blog/smarty3/directory_end.tpl b/view/theme/blog/smarty3/directory_end.tpl new file mode 100644 index 0000000..4d1a673 --- /dev/null +++ b/view/theme/blog/smarty3/directory_end.tpl @@ -0,0 +1,6 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
\ No newline at end of file diff --git a/view/theme/blog/smarty3/directory_header.tpl b/view/theme/blog/smarty3/directory_header.tpl new file mode 100644 index 0000000..a89c00e --- /dev/null +++ b/view/theme/blog/smarty3/directory_header.tpl @@ -0,0 +1,21 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+

{{$sitedir}}

+ +{{$globaldir}} +{{$admin}} + +{{$finding}} + +
+
+{{$desc}} + + +
+
+
diff --git a/view/theme/blog/smarty3/directory_item.tpl b/view/theme/blog/smarty3/directory_item.tpl new file mode 100644 index 0000000..4a70736 --- /dev/null +++ b/view/theme/blog/smarty3/directory_item.tpl @@ -0,0 +1,11 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+ {{$alt_text}} + + +
+ diff --git a/view/theme/blog/smarty3/end.tpl b/view/theme/blog/smarty3/end.tpl new file mode 100644 index 0000000..d82e121 --- /dev/null +++ b/view/theme/blog/smarty3/end.tpl @@ -0,0 +1,6 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + \ No newline at end of file diff --git a/view/theme/blog/smarty3/field_input.tpl b/view/theme/blog/smarty3/field_input.tpl new file mode 100644 index 0000000..0184b05 --- /dev/null +++ b/view/theme/blog/smarty3/field_input.tpl @@ -0,0 +1,11 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + +
+ + + {{$field.3}} +
diff --git a/view/theme/blog/smarty3/jot-end.tpl b/view/theme/blog/smarty3/jot-end.tpl new file mode 100644 index 0000000..a7fb961 --- /dev/null +++ b/view/theme/blog/smarty3/jot-end.tpl @@ -0,0 +1,5 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} diff --git a/view/theme/blog/smarty3/jot-header.tpl b/view/theme/blog/smarty3/jot-header.tpl new file mode 100644 index 0000000..1970400 --- /dev/null +++ b/view/theme/blog/smarty3/jot-header.tpl @@ -0,0 +1,349 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + + + + + diff --git a/view/theme/blog/smarty3/jot.tpl b/view/theme/blog/smarty3/jot.tpl new file mode 100644 index 0000000..8f00957 --- /dev/null +++ b/view/theme/blog/smarty3/jot.tpl @@ -0,0 +1,69 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+
+
+
 
+
+
+
+ +
+ + + + + + + + +
+ {{if $placeholdercategory}} +
+ {{/if}} +
+ + +
+ +
+
+
+
+
+
+
+
+
{{$bang}}
+
+
+
+
+ {{if $preview}}
{{$preview}}
{{/if}} +
+ + +
+ + + + +
+
+
+
+ {{$acl}} +
+
{{$emailcc}}
+
+ {{$jotnets}} +
+ Ok +
+
+
+ +{{$share}} diff --git a/view/theme/blog/smarty3/jot_geotag.tpl b/view/theme/blog/smarty3/jot_geotag.tpl new file mode 100644 index 0000000..1ed2367 --- /dev/null +++ b/view/theme/blog/smarty3/jot_geotag.tpl @@ -0,0 +1,13 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + + if(navigator.geolocation) { + navigator.geolocation.getCurrentPosition(function(position) { + $('#jot-coord').val(position.coords.latitude + ' ' + position.coords.longitude); + $('#profile-nolocation-wrapper').show(); + }); + } + diff --git a/view/theme/blog/smarty3/nav.tpl b/view/theme/blog/smarty3/nav.tpl new file mode 100644 index 0000000..9bff305 --- /dev/null +++ b/view/theme/blog/smarty3/nav.tpl @@ -0,0 +1,109 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + + + diff --git a/view/theme/blog/smarty3/profile-hide-friends.tpl b/view/theme/blog/smarty3/profile-hide-friends.tpl new file mode 100644 index 0000000..56409a9 --- /dev/null +++ b/view/theme/blog/smarty3/profile-hide-friends.tpl @@ -0,0 +1,13 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+ + +
diff --git a/view/theme/blog/smarty3/profile-hide-wall.tpl b/view/theme/blog/smarty3/profile-hide-wall.tpl new file mode 100644 index 0000000..755908d --- /dev/null +++ b/view/theme/blog/smarty3/profile-hide-wall.tpl @@ -0,0 +1,21 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +

+{{$desc}} +

+ +
+ + + +
+
+
+ + + +
+
diff --git a/view/theme/blog/smarty3/profile_advanced.tpl b/view/theme/blog/smarty3/profile_advanced.tpl new file mode 100644 index 0000000..09cd56c --- /dev/null +++ b/view/theme/blog/smarty3/profile_advanced.tpl @@ -0,0 +1,176 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+

{{$title}}

+ +
+
{{$profile.fullname.0}}
+
{{$profile.fullname.1}}
+
+ + {{if $profile.gender}} +
+
{{$profile.gender.0}}
+
{{$profile.gender.1}}
+
+ {{/if}} + + {{if $profile.birthday}} +
+
{{$profile.birthday.0}}
+
{{$profile.birthday.1}}
+
+ {{/if}} + + {{if $profile.age}} +
+
{{$profile.age.0}}
+
{{$profile.age.1}}
+
+ {{/if}} + + {{if $profile.marital}} +
+
{{$profile.marital.0}}
+
{{$profile.marital.1}}{{if $profile.marital.with}} ({{$profile.marital.with}}){{/if}}{{if $profile.howlong}} {{$profile.howlong}}{{/if}}
+
+ {{/if}} + + {{if $profile.sexual}} +
+
{{$profile.sexual.0}}
+
{{$profile.sexual.1}}
+
+ {{/if}} + + {{if $profile.pub_keywords}} +
+
{{$profile.pub_keywords.0}}
+
{{$profile.pub_keywords.1}}
+
+ {{/if}} + + {{if $profile.homepage}} +
+
{{$profile.homepage.0}}
+
{{$profile.homepage.1}}
+
+ {{/if}} + + {{if $profile.hometown}} +
+
{{$profile.hometown.0}}
+
{{$profile.hometown.1}}
+
+ {{/if}} + + {{if $profile.politic}} +
+
{{$profile.politic.0}}
+
{{$profile.politic.1}}
+
+ {{/if}} + + {{if $profile.religion}} +
+
{{$profile.religion.0}}
+
{{$profile.religion.1}}
+
+ {{/if}} + + {{if $profile.about}} +
+
{{$profile.about.0}}
+
{{$profile.about.1}}
+
+ {{/if}} + + {{if $profile.interest}} +
+
{{$profile.interest.0}}
+
{{$profile.interest.1}}
+
+ {{/if}} + + {{if $profile.likes}} +
+
{{$profile.likes.0}}
+
{{$profile.likes.1}}
+
+ {{/if}} + + {{if $profile.dislikes}} +
+
{{$profile.dislikes.0}}
+
{{$profile.dislikes.1}}
+
+ {{/if}} + + {{if $profile.contact}} +
+
{{$profile.contact.0}}
+
{{$profile.contact.1}}
+
+ {{/if}} + + + {{if $profile.music}} +
+
{{$profile.music.0}}
+
{{$profile.music.1}}
+
+ {{/if}} + + + {{if $profile.book}} +
+
{{$profile.book.0}}
+
{{$profile.book.1}}
+
+ {{/if}} + + + {{if $profile.tv}} +
+
{{$profile.tv.0}}
+
{{$profile.tv.1}}
+
+ {{/if}} + + + {{if $profile.film}} +
+
{{$profile.film.0}}
+
{{$profile.film.1}}
+
+ {{/if}} + + + {{if $profile.romance}} +
+
{{$profile.romance.0}}
+
{{$profile.romance.1}}
+
+ {{/if}} + + + {{if $profile.work}} +
+
{{$profile.work.0}}
+
{{$profile.work.1}}
+
+ {{/if}} + + {{if $profile.education}} +
+
{{$profile.education.0}}
+
{{$profile.education.1}}
+
+ {{/if}} + +
+ + diff --git a/view/theme/blog/smarty3/profile_edit.tpl b/view/theme/blog/smarty3/profile_edit.tpl new file mode 100644 index 0000000..8aa9f54 --- /dev/null +++ b/view/theme/blog/smarty3/profile_edit.tpl @@ -0,0 +1,240 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+ {{$default}} + + + {{if $disabled}}{{else}} + + {{/if}} + +

{{$banner}}

+ +
+ + + +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + {{$gender}} +
+ +
+ + {{$dob}} {{$age}} +
+ + {{$hide_friends}} + + +
+ +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ + +
+ +
+ + +
+ + {{$marital}} +
+ +
+ + +
+ +
+ + +
+ + +
+ + {{$sexual}} +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + + {{$lbl_pubdsc}} +
+ +
+ + + {{$lbl_prvdsc}} +
+ + +
+ +
+ + + +
+ + +
+ + +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ +
+ + +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ +
+ + +
+ + +
+ +
+ + +
+ + +
+ + +
+ + +
+ +
+ +
+ + +
\ No newline at end of file diff --git a/view/theme/blog/smarty3/profile_edlink.tpl b/view/theme/blog/smarty3/profile_edlink.tpl new file mode 100644 index 0000000..a7fb961 --- /dev/null +++ b/view/theme/blog/smarty3/profile_edlink.tpl @@ -0,0 +1,5 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} diff --git a/view/theme/blog/smarty3/profile_entry.tpl b/view/theme/blog/smarty3/profile_entry.tpl new file mode 100644 index 0000000..0c54b4e --- /dev/null +++ b/view/theme/blog/smarty3/profile_entry.tpl @@ -0,0 +1,10 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+ {{$alt}} +

{{$profile_name}}

+ {{$visible}} +
diff --git a/view/theme/blog/smarty3/profile_listing_header.tpl b/view/theme/blog/smarty3/profile_listing_header.tpl new file mode 100644 index 0000000..3e38013 --- /dev/null +++ b/view/theme/blog/smarty3/profile_listing_header.tpl @@ -0,0 +1,11 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+

{{$header}}

+ \ No newline at end of file diff --git a/view/theme/blog/smarty3/profile_vcard.tpl b/view/theme/blog/smarty3/profile_vcard.tpl new file mode 100644 index 0000000..bc0a329 --- /dev/null +++ b/view/theme/blog/smarty3/profile_vcard.tpl @@ -0,0 +1,70 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + + +{{$contact_block}} + + diff --git a/view/theme/blog/smarty3/removeme.tpl b/view/theme/blog/smarty3/removeme.tpl new file mode 100644 index 0000000..d210931 --- /dev/null +++ b/view/theme/blog/smarty3/removeme.tpl @@ -0,0 +1,25 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+

{{$title}}

+ +
+ +
{{$desc}}
+ +
+ + +
+ + +
+ + + +
+
+
diff --git a/view/theme/blog/smarty3/search_item.tpl b/view/theme/blog/smarty3/search_item.tpl new file mode 100644 index 0000000..8c284fe --- /dev/null +++ b/view/theme/blog/smarty3/search_item.tpl @@ -0,0 +1,39 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + + diff --git a/view/theme/blog/smarty3/settings.tpl b/view/theme/blog/smarty3/settings.tpl new file mode 100644 index 0000000..938077e --- /dev/null +++ b/view/theme/blog/smarty3/settings.tpl @@ -0,0 +1,154 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+

{{$ptitle}}

+ +{{$nickname_block}} + +
+ + +

{{$h_pass}}

+ +{{include file="field_password.tpl" field=$password1}} +{{include file="field_password.tpl" field=$password2}} + +{{if $oid_enable}} +{{include file="field_input.tpl" field=$openid}} +{{/if}} + +
+ +
+ + +

{{$h_basic}}

+ +{{include file="field_input.tpl" field=$username}} +{{include file="field_input.tpl" field=$email}} +{{include file="field_custom.tpl" field=$timezone}} +{{include file="field_input.tpl" field=$defloc}} +{{include file="field_checkbox.tpl" field=$allowloc}} + + +
+ +
+ + +

{{$h_prv}}

+ + + + +{{include file="field_input.tpl" field=$maxreq}} + +{{$profile_in_dir}} + +{{$profile_in_net_dir}} + +{{$hide_friends}} + +{{$hide_wall}} + +{{$blockwall}} + +{{$blocktags}} + +{{$suggestme}} + +{{$unkmail}} + + +{{include file="field_input.tpl" field=$cntunkmail}} + +{{include file="field_input.tpl" field=$expire.days}} + + +
+ {{$expire.label}} +
+
+

{{$expire.advanced}}

+ {{include file="field_yesno.tpl" field=$expire.items}} + {{include file="field_yesno.tpl" field=$expire.notes}} + {{include file="field_yesno.tpl" field=$expire.starred}} + {{include file="field_yesno.tpl" field=$expire.network_only}} +
+
+ +
+ + +{{$group_select}} + +
+ {{$permissions}} {{$permdesc}} +
+ + +
+
+
+ + +
+ +
+ + + +

{{$h_not}}

+
+ +

{{$activity_options}}

+ +{{include file="field_checkbox.tpl" field=$post_newfriend}} +{{include file="field_checkbox.tpl" field=$post_joingroup}} +{{include file="field_checkbox.tpl" field=$post_profilechange}} + + +

{{$lbl_not}}

+ +
+{{include file="field_intcheckbox.tpl" field=$notify1}} +{{include file="field_intcheckbox.tpl" field=$notify2}} +{{include file="field_intcheckbox.tpl" field=$notify3}} +{{include file="field_intcheckbox.tpl" field=$notify4}} +{{include file="field_intcheckbox.tpl" field=$notify5}} +{{include file="field_intcheckbox.tpl" field=$notify6}} +{{include file="field_intcheckbox.tpl" field=$notify7}} +{{include file="field_intcheckbox.tpl" field=$notify8}} +
+ +
+ +
+ +
+ + +

{{$h_advn}}

+

{{$h_descadvn}}

+ +{{$pagetype}} + +
+ +
+ +
diff --git a/view/theme/blog/smarty3/settings_addons.tpl b/view/theme/blog/smarty3/settings_addons.tpl new file mode 100644 index 0000000..2a31269 --- /dev/null +++ b/view/theme/blog/smarty3/settings_addons.tpl @@ -0,0 +1,17 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+

{{$title}}

+ + + + + +{{$settings_addons}} + + + +
\ No newline at end of file diff --git a/view/theme/blog/smarty3/settings_connectors.tpl b/view/theme/blog/smarty3/settings_connectors.tpl new file mode 100644 index 0000000..2cdb784 --- /dev/null +++ b/view/theme/blog/smarty3/settings_connectors.tpl @@ -0,0 +1,42 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+

{{$title}}

+ +
{{$diasp_enabled}}
+
{{$ostat_enabled}}
+ +
+ + +{{$settings_connectors}} + +{{if $mail_disabled}} + +{{else}} +
+

{{$h_imap}}

+

{{$imap_desc}}

+ {{include file="field_custom.tpl" field=$imap_lastcheck}} + {{include file="field_input.tpl" field=$mail_server}} + {{include file="field_input.tpl" field=$mail_port}} + {{include file="field_select.tpl" field=$mail_ssl}} + {{include file="field_input.tpl" field=$mail_user}} + {{include file="field_password.tpl" field=$mail_pass}} + {{include file="field_input.tpl" field=$mail_replyto}} + {{include file="field_checkbox.tpl" field=$mail_pubmail}} + {{include file="field_select.tpl" field=$mail_action}} + {{include file="field_input.tpl" field=$mail_movetofolder}} + +
+ +
+
+{{/if}} + +
+ +
\ No newline at end of file diff --git a/view/theme/blog/smarty3/settings_display.tpl b/view/theme/blog/smarty3/settings_display.tpl new file mode 100644 index 0000000..7171edc --- /dev/null +++ b/view/theme/blog/smarty3/settings_display.tpl @@ -0,0 +1,29 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+

{{$ptitle}}

+ +
+ + +{{include file="field_themeselect.tpl" field=$theme}} +{{include file="field_themeselect.tpl" field=$mobile_theme}} +{{include file="field_input.tpl" field=$ajaxint}} +{{include file="field_input.tpl" field=$itemspage_network}} +{{include file="field_yesno.tpl" field=$nosmile}} + + +
+ +
+ +{{if $theme_config}} +

Theme settings

+{{$theme_config}} +{{/if}} + +
+
\ No newline at end of file diff --git a/view/theme/blog/smarty3/settings_features.tpl b/view/theme/blog/smarty3/settings_features.tpl new file mode 100644 index 0000000..9e6557e --- /dev/null +++ b/view/theme/blog/smarty3/settings_features.tpl @@ -0,0 +1,27 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+

{{$title}}

+ + +
+ + +{{foreach $features as $f}} +

{{$f.0}}

+ +{{foreach $f.1 as $fcat}} + {{include file="field_yesno.tpl" field=$fcat}} +{{/foreach}} +{{/foreach}} + +
+ +
+ +
+
+ diff --git a/view/theme/blog/smarty3/settings_nick_set.tpl b/view/theme/blog/smarty3/settings_nick_set.tpl new file mode 100644 index 0000000..df0716f --- /dev/null +++ b/view/theme/blog/smarty3/settings_nick_set.tpl @@ -0,0 +1,6 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
{{$desc}} '{{$nickname}}@{{$basepath}}'{{$subdir}}
diff --git a/view/theme/blog/smarty3/settings_nick_subdir.tpl b/view/theme/blog/smarty3/settings_nick_subdir.tpl new file mode 100644 index 0000000..874185d --- /dev/null +++ b/view/theme/blog/smarty3/settings_nick_subdir.tpl @@ -0,0 +1,11 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +

+It appears that your website is located in a subdirectory of the
+{{$hostname}} website, so this setting may not work reliably.
+

+

If you have any issues, you may have better results using the profile
address '{{$baseurl}}/profile/{{$nickname}}'. +

\ No newline at end of file diff --git a/view/theme/blog/smarty3/settings_oauth.tpl b/view/theme/blog/smarty3/settings_oauth.tpl new file mode 100644 index 0000000..c4a0ae5 --- /dev/null +++ b/view/theme/blog/smarty3/settings_oauth.tpl @@ -0,0 +1,33 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+

{{$title}}

+ + +
+ + + +{{$add}} + + {{foreach $apps as $app}} +
+ +

{{if $app.name}}{{$app.name}}{{else}}{{$noname}}{{/if}}

+ {{if $app.my}} + {{if $app.oauth_token}} + + {{/if}} + {{/if}} + {{if $app.my}} + {{$edit}} + {{$delete}} + {{/if}} +
+ {{/foreach}} + +
+
\ No newline at end of file diff --git a/view/theme/blog/smarty3/settings_oauth_edit.tpl b/view/theme/blog/smarty3/settings_oauth_edit.tpl new file mode 100644 index 0000000..f9b1dd9 --- /dev/null +++ b/view/theme/blog/smarty3/settings_oauth_edit.tpl @@ -0,0 +1,24 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+

{{$title}}

+ +
+ + +{{include file="field_input.tpl" field=$name}} +{{include file="field_input.tpl" field=$key}} +{{include file="field_input.tpl" field=$secret}} +{{include file="field_input.tpl" field=$redirect}} +{{include file="field_input.tpl" field=$icon}} + +
+ + +
+ +
+
\ No newline at end of file diff --git a/view/theme/blog/smarty3/threaded_conversation.tpl b/view/theme/blog/smarty3/threaded_conversation.tpl new file mode 100644 index 0000000..6107873 --- /dev/null +++ b/view/theme/blog/smarty3/threaded_conversation.tpl @@ -0,0 +1,49 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +{{$live_update}} + +{{foreach $threads as $thread}} + {{include file="{{$thread.template}}" item=$thread}} +{{/foreach}} + + +{{if $dropping}} + +{{/if}} + + + +{{* scroll to and hiligh comment in display mode *}} +{{if $mode == display}} + +{{/if}} diff --git a/view/theme/blog/smarty3/uexport.tpl b/view/theme/blog/smarty3/uexport.tpl new file mode 100644 index 0000000..9c4d929 --- /dev/null +++ b/view/theme/blog/smarty3/uexport.tpl @@ -0,0 +1,16 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+

{{$title}}

+ + +{{foreach $options as $o}} +
+
{{$o.1}}
+
{{$o.2}}
+
+{{/foreach}} +
\ No newline at end of file diff --git a/view/theme/blog/smarty3/wall_thread.tpl b/view/theme/blog/smarty3/wall_thread.tpl new file mode 100644 index 0000000..bd06e60 --- /dev/null +++ b/view/theme/blog/smarty3/wall_thread.tpl @@ -0,0 +1,127 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+
+ {{if $item.title}}

{{$item.title}}

{{/if}} + + + + +
+ +
+ {{$item.body}} +
+ +
+ {{if $item.categories}} + + Posted in + {{foreach $item.categories as $cat}} + {{$cat.name}}{{if $cat.removeurl}} (x) {{/if}} + {{/foreach}} + + | + {{/if}} + {{if $item.hashtags}} + + Tagged + {{foreach $item.hashtags as $tag}} + {{$tag}} + {{/foreach}} + + | + {{/if}} + {{if $item.mentions}} + + Mention + {{foreach $item.mentions as $men}} + {{$men}} + {{/foreach}} + + | + {{/if}} + + {{$item.total_comments_num}} {{$item.total_comments_text}} + +
+ + +
+ + {{if $item.vote}} + + {{if $item.vote.dislike}}{{/if}} + · + {{/if}} + + {{if $item.vote.share}} + + · + {{/if}} + + {{if $item.star}} + + {{/if}} + {{if $item.tagger}} + + {{/if}} + {{if $item.filer}} + + {{/if}} + + {{if $item.edpost}} + + · + {{/if}} + {{if $item.drop.dropping}}{{/if}} + {{if $item.drop.pagedrop}}{{/if}} + + + +
+
+ +{{if $mode != profile}} + +
+ {{if $mode != network}} +

+ {{$item.total_comments_num}} {{$item.total_comments_text}} {{if $item.title}}on “{{$item.title}}”{{/if}} +

+ {{/if}} +
    + + {{foreach $item.children as $child}} + {{include file="wall_thread_comment.tpl" item=$child}} + {{/foreach}} + + +
+ {{$item.comment}} + {{if $mode == network}}Add a comment{{/if}} +
+{{/if}} + diff --git a/view/theme/blog/smarty3/wall_thread_comment.tpl b/view/theme/blog/smarty3/wall_thread_comment.tpl new file mode 100644 index 0000000..b97204d --- /dev/null +++ b/view/theme/blog/smarty3/wall_thread_comment.tpl @@ -0,0 +1,43 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
  • +
    + +
    +

    {{$item.body}}

    +
    +
    + {{foreach $item.children as $child}} + {{include file="wall_thread_comment.tpl" item=$child}} + {{/foreach}} + +
    + +
    + + {{$item.comment}} +