diff options
author | zotlabs <mike@macgirvin.com> | 2018-02-28 19:49:33 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-02-28 19:49:33 -0800 |
commit | 14e14c6c92dadf4c95900978135a161f5da696d9 (patch) | |
tree | 46b1fe0fb7cd6c9cef71bba5fe3e3bc345a8ca5e /view/tpl/new_member.tpl | |
parent | 1c07880c0178bbda875bbe2cda5d19ae7fb5e1c4 (diff) | |
download | volse-hubzilla-14e14c6c92dadf4c95900978135a161f5da696d9.tar.gz volse-hubzilla-14e14c6c92dadf4c95900978135a161f5da696d9.tar.bz2 volse-hubzilla-14e14c6c92dadf4c95900978135a161f5da696d9.zip |
provide new member widget which sits beneath the notifications for the first 60 days after an account creation.
Diffstat (limited to 'view/tpl/new_member.tpl')
-rw-r--r-- | view/tpl/new_member.tpl | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/view/tpl/new_member.tpl b/view/tpl/new_member.tpl new file mode 100644 index 000000000..60e347ab3 --- /dev/null +++ b/view/tpl/new_member.tpl @@ -0,0 +1,17 @@ +<div class="widget"> +<h3>{{$title}}</h3> +{{if $options}} +<ul class="nav nav-pills flex-column"> +{{foreach $options as $x}} + {{if is_array($x) }} + {{foreach $x as $y => $z}} + <li class="nav-item"><a href="{{$y}}" class="nav-link">{{$z}}</a></li> + {{/foreach}} + {{else}} + <div><strong>{{$x}}</strong></div> + {{/if}} +{{/foreach}} +</ul> +{{/if}} +</div> + |