mirror of
https://github.com/pi-hole/web.git
synced 2026-08-24 07:01:52 +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>
22 lines
684 B
Lua
22 lines
684 B
Lua
<!-- Title/Header -->
|
|
<div class="app-content-header">
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-sm-6">
|
|
<h1><?= PageTitle ?></h1>
|
|
</div>
|
|
<div class="col-sm-6">
|
|
<div class="settings-selector">
|
|
<? if scriptname ~= 'settings/all' then
|
|
-- Show the level selector, except in All Settings page
|
|
?>
|
|
<input type="checkbox" id="expert-settings">
|
|
<? else ?>
|
|
<input type="checkbox" id="only-changed">
|
|
<? end ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|