mirror of
https://github.com/pi-hole/web.git
synced 2026-08-23 06:39:09 +01:00
- remove old `.page-title` from all pages; - add the the new header structure and place the title inside the new `.app-content-header` element; Signed-off-by: RD WebDesign <github@rdwebdesign.com.br>
45 lines
1.7 KiB
Lua
45 lines
1.7 KiB
Lua
<? --[[
|
|
* Pi-hole: A black hole for Internet advertisements
|
|
* (c) 2023 Pi-hole, LLC (https://pi-hole.net)
|
|
* Network-wide ad blocking via your own hardware.
|
|
*
|
|
* This file is copyright under the latest version of the EUPL.
|
|
* Please see LICENSE file for your rights under this license.
|
|
--]]
|
|
|
|
mg.include('scripts/lua/header_authenticated.lp','r')
|
|
|
|
-- Page title and level selector
|
|
PageTitle = "All Settings"
|
|
?>
|
|
<? mg.include('scripts/lua/settings_header.lp','r') ?>
|
|
<div class="app-content">
|
|
<div class="container-fluid">
|
|
<div class="row" id="advanced-content">
|
|
<div class="overlay" id="advanced-overlay">
|
|
<i class="fa fa-sync fa-spin"></i>
|
|
</div>
|
|
|
|
<div class="col-sm-12" id="advanced-settings-menu">
|
|
<ul class="nav nav-pills" role="tablist">
|
|
<!-- dynamically filled with content -->
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="col-sm-12 tab-content" id="advanced-settings-tabs">
|
|
<!-- dynamically filled with content -->
|
|
</div>
|
|
|
|
<div class="col-sm-12 save-button-container">
|
|
<button type="button" class="btn btn-primary save-button"><i class="fa-solid fa-fw fa-floppy-disk"></i> Save & Apply</button>
|
|
</div>
|
|
</div>
|
|
</div><!-- /.container-fluid -->
|
|
</div><!-- /.app-content -->
|
|
|
|
<script src="<?=pihole.fileversion('vendor/bootstrap5-toggle/bootstrap5-toggle.jquery.min.js')?>"></script>
|
|
<script src="<?=pihole.fileversion('scripts/js/settings-advanced.js')?>"></script>
|
|
<script src="<?=pihole.fileversion('scripts/js/settings.js')?>"></script>
|
|
|
|
<? mg.include('scripts/lua/footer.lp','r')?>
|