[frio] Remove duplicate page wrapper in auto_request

- [frio] Add page wrapper to minimal template (for sitewide theme settings)
This commit is contained in:
Hypolite Petovan 2020-06-12 22:05:12 -04:00
parent 18745b1723
commit 2cf3ed6d7c
2 changed files with 36 additions and 35 deletions

View File

@ -6,7 +6,10 @@
<?php if(!empty($page['htmlhead'])) echo $page['htmlhead'] ?> <?php if(!empty($page['htmlhead'])) echo $page['htmlhead'] ?>
</head> </head>
<body class="minimal"> <body class="minimal">
<section><?php if(!empty($page['content'])) echo $page['content']; ?> <section>
<div class="generic-page-wrapper">
<?php if(!empty($page['content'])) echo $page['content']; ?>
</div>
<div id="page-footer"></div> <div id="page-footer"></div>
</section> </section>
<!-- Modal --> <!-- Modal -->

View File

@ -1,4 +1,3 @@
<div class="generic-page-wrapper">
<h1>{{$header}}</h1> <h1>{{$header}}</h1>
{{if !$myaddr}} {{if !$myaddr}}
@ -42,4 +41,3 @@
<input class="btn btn-default" type="submit" name="cancel" id="dfrn-request-cancel-button" value="{{$cancel}}"> <input class="btn btn-default" type="submit" name="cancel" id="dfrn-request-cancel-button" value="{{$cancel}}">
</div> </div>
</form> </form>
</div>