diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-01-29 22:44:38 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-01-29 22:44:38 +0100 |
commit | 296117124c530ce7533431e6bb8a7958b89f7f51 (patch) | |
tree | f4cac99084f605059e830d4713926bf39fc13593 /view/tpl/go.tpl | |
parent | 0d21c6f86361d723175357b9584ca69d4a62e0a4 (diff) | |
parent | e4eff6a32bd6b9907c5c1a4454e5861f3712d380 (diff) | |
download | volse-hubzilla-296117124c530ce7533431e6bb8a7958b89f7f51.tar.gz volse-hubzilla-296117124c530ce7533431e6bb8a7958b89f7f51.tar.bz2 volse-hubzilla-296117124c530ce7533431e6bb8a7958b89f7f51.zip |
Merge remote-tracking branch 'mike/master' into dev
Diffstat (limited to 'view/tpl/go.tpl')
-rw-r--r-- | view/tpl/go.tpl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/view/tpl/go.tpl b/view/tpl/go.tpl new file mode 100644 index 000000000..f0f9ee79e --- /dev/null +++ b/view/tpl/go.tpl @@ -0,0 +1,16 @@ +<h2>{{$title}}</h2> + +<div class="descriptive-text"> + <p>{{$m}}</p> + <p>{{$m1}}</p> +</div> + +{{if $options}} +<ul class="nav nav-pills flex-column"> +{{foreach $options as $k => $v}} + <li class="nav-item"><a href="{{$k}}" class="nav-link">{{$v}}</a></li> +{{/foreach}} +</ul> +{{/if}} + + |