diff options
-rw-r--r-- | view/tpl/app_create.tpl | 76 | ||||
-rwxr-xr-x | view/tpl/myapps.tpl | 17 | ||||
-rwxr-xr-x | view/tpl/nav.tpl | 2 |
3 files changed, 51 insertions, 44 deletions
diff --git a/view/tpl/app_create.tpl b/view/tpl/app_create.tpl index 32ab7fd4c..7a0521436 100644 --- a/view/tpl/app_create.tpl +++ b/view/tpl/app_create.tpl @@ -1,36 +1,40 @@ -<h2>{{$banner}}</h2> - - -<form action="appman" method="post"> -{{if $guid}} -<input type="hidden" name="guid" value="{{$guid}}" /> -{{/if}} -{{if $author}} -<input type="hidden" name="author" value="{{$author}}" /> -{{/if}} -{{if $addr}} -<input type="hidden" name="addr" value="{{$addr}}" /> -{{/if}} - -<input type="hidden" name="requires" value="{{$requires}}" /> -<input type="hidden" name="system" value="{{$system}}" /> -<input type="hidden" name="plugin" value="{{$plugin}}" /> - - -{{include file="field_input.tpl" field=$name}} -{{include file="field_input.tpl" field=$categories}} -{{include file="field_input.tpl" field=$url}} -{{include file="field_textarea.tpl" field=$desc}} -{{include file="field_input.tpl" field=$photo}} -{{include file="field_input.tpl" field=$version}} -{{include file="field_input.tpl" field=$price}} -{{include file="field_input.tpl" field=$page}} - -{{if $embed}} -{{include file="field_textarea.tpl" field=$embed}} -{{/if}} - -<input type="submit" name="submit" value="{{$submit}}" /> - -</form> - +<div class="generic-content-wrapper"> + <div class="section-title-wrapper"> + <h2>{{$banner}}</h2> + </div> + + <div class="section-content-wrapper"> + <form action="appman" method="post"> + {{if $guid}} + <input type="hidden" name="guid" value="{{$guid}}" /> + {{/if}} + {{if $author}} + <input type="hidden" name="author" value="{{$author}}" /> + {{/if}} + {{if $addr}} + <input type="hidden" name="addr" value="{{$addr}}" /> + {{/if}} + + <input type="hidden" name="requires" value="{{$requires}}" /> + <input type="hidden" name="system" value="{{$system}}" /> + <input type="hidden" name="plugin" value="{{$plugin}}" /> + + + {{include file="field_input.tpl" field=$name}} + {{include file="field_input.tpl" field=$categories}} + {{include file="field_input.tpl" field=$url}} + {{include file="field_textarea.tpl" field=$desc}} + {{include file="field_input.tpl" field=$photo}} + {{include file="field_input.tpl" field=$version}} + {{include file="field_input.tpl" field=$price}} + {{include file="field_input.tpl" field=$page}} + + {{if $embed}} + {{include file="field_textarea.tpl" field=$embed}} + {{/if}} + + <input type="submit" name="submit" value="{{$submit}}" /> + + </form> + </div> +</div> diff --git a/view/tpl/myapps.tpl b/view/tpl/myapps.tpl index c654993b7..074965985 100755 --- a/view/tpl/myapps.tpl +++ b/view/tpl/myapps.tpl @@ -1,8 +1,11 @@ -<div class="generic-content-wrapper-styled"> -<h3>{{$title}}{{$cat}}</h3> - -{{foreach $apps as $ap}} -{{$ap}} -{{/foreach}} -<div class="clear"></div> +<div class="generic-content-wrapper"> + <div class="section-title-wrapper"> + <h2>{{$title}}{{$cat}}</h2> + </div> + <div class="section-content-wrapper"> + {{foreach $apps as $ap}} + {{$ap}} + {{/foreach}} + <div class="clear"></div> + </div> </div> diff --git a/view/tpl/nav.tpl b/view/tpl/nav.tpl index 8f8165ba1..6d21d3f1e 100755 --- a/view/tpl/nav.tpl +++ b/view/tpl/nav.tpl @@ -122,7 +122,7 @@ {{if $nav.intros}} <li class="{{$sel.intros}} intro-button" style="display: none;"> <a class="{{$nav.intros.2}}" href="{{$nav.intros.0}}" title="{{$nav.intros.3}}" id="{{$nav.intros.4}}" data-toggle="dropdown" rel="#nav-intros-menu"> - <i class="fa fa-fw fa-user"></i> + <i class="fa fa-fw fa-users"></i> <span class="intro-update badge"></span> </a> <ul id="nav-intros-menu" class="dropdown-menu" rel="intros"> |