diff options
Diffstat (limited to 'view/tpl')
-rw-r--r-- | view/tpl/siteinfo.tpl | 14 | ||||
-rw-r--r-- | view/tpl/smarty3/siteinfo.tpl | 19 |
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}} |