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 | |
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')
-rw-r--r-- | view/pdl/mod_go.pdl | 6 | ||||
-rwxr-xr-x | view/tpl/admin_site.tpl | 1 | ||||
-rw-r--r-- | view/tpl/go.tpl | 16 |
3 files changed, 23 insertions, 0 deletions
diff --git a/view/pdl/mod_go.pdl b/view/pdl/mod_go.pdl new file mode 100644 index 000000000..c34898dd5 --- /dev/null +++ b/view/pdl/mod_go.pdl @@ -0,0 +1,6 @@ +[region=aside] +[widget=fullprofile][/widget] +[/region] +[region=right_aside] +[widget=notifications][/widget] +[/region] diff --git a/view/tpl/admin_site.tpl b/view/tpl/admin_site.tpl index 50482f03d..0eabe620d 100755 --- a/view/tpl/admin_site.tpl +++ b/view/tpl/admin_site.tpl @@ -74,6 +74,7 @@ {{include file="field_select.tpl" field=$access_policy}} {{include file="field_input.tpl" field=$location}} {{include file="field_input.tpl" field=$sellpage}} + {{include file="field_input.tpl" field=$firstpage}} <div class="submit"><input type="submit" name="page_site" value="{{$submit}}" /></div> 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}} + + |