aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-02-20 19:18:25 -0800
committerfriendica <info@friendica.com>2013-02-20 19:18:25 -0800
commitb2fd23eb29dd3e1bfd86749ae51a7d841aca0dfb (patch)
treecb3023b75c51ada833eb14d93c450bef44d9011f /view
parentf01f390a2e4bef735ea85b52ec9941fef9a2b7fe (diff)
parent6199e1d5b8779efdfc8aac8863e113784a32cdb7 (diff)
downloadvolse-hubzilla-b2fd23eb29dd3e1bfd86749ae51a7d841aca0dfb.tar.gz
volse-hubzilla-b2fd23eb29dd3e1bfd86749ae51a7d841aca0dfb.tar.bz2
volse-hubzilla-b2fd23eb29dd3e1bfd86749ae51a7d841aca0dfb.zip
Merge pull request #30 from unary/siteinfo-tpl
add siteinfo.tpl
Diffstat (limited to 'view')
-rw-r--r--view/tpl/siteinfo.tpl14
-rw-r--r--view/tpl/smarty3/siteinfo.tpl19
2 files changed, 33 insertions, 0 deletions
diff --git a/view/tpl/siteinfo.tpl b/view/tpl/siteinfo.tpl
new file mode 100644
index 000000000..4931cc3a7
--- /dev/null
+++ b/view/tpl/siteinfo.tpl
@@ -0,0 +1,14 @@
+<h3>$title</h3>
+<p></p>
+<p>$description</p>
+{{ if $version }}
+<p>$version</p>
+{{ endif }}
+<p>$web_location</p>
+<p>$visit</p>
+<p>$bug_text <a href="$bug_link_url">$bug_link_text</a></p>
+<p>$contact</p>
+<p>$plugins_text</p>
+{{ if $plugins_list }}
+ <div style="margin-left: 25px; margin-right: 25px;">$plugins_list</div>
+{{ endif }}
diff --git a/view/tpl/smarty3/siteinfo.tpl b/view/tpl/smarty3/siteinfo.tpl
new file mode 100644
index 000000000..3720c9629
--- /dev/null
+++ b/view/tpl/smarty3/siteinfo.tpl
@@ -0,0 +1,19 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
+<h3>{{$title}}</h3>
+<p></p>
+<p>{{$description}}</p>
+{{if $version}}
+<p>{{$version}}</p>
+{{/if}}
+<p>{{$web_location}}</p>
+<p>{{$visit}}</p>
+<p>{{$bug_text}} <a href="{{$bug_link_url}}">{{$bug_link_text}}</a></p>
+<p>{{$contact}}</p>
+<p>{{$plugins_text}}</p>
+{{if $plugins_list}}
+ <div style="margin-left: 25px; margin-right: 25px;">{{$plugins_list}}</div>
+{{/if}}