Various changes

mobile-friendly ui updates
admin user-edit bugfix
file cleanup
added searchFields
add blog search
remove unused code
add maintenance mode config
This commit is contained in:
Joey Kimsey
2025-01-30 13:11:02 -05:00
parent b5996dc7db
commit 5e621883ff
106 changed files with 1154 additions and 787 deletions

View File

@ -1,4 +1,4 @@
<div class="col-6 col-md-2 mb-3 text-center">
<div class="col-12 col-sm-6 col-md-3 col-lg-2 mb-3 text-center">
<h5>More Info</h5>
<ul class="nav flex-column">
{LOOP}

View File

@ -1,11 +1,23 @@
<div class="container border-top border-white mt-auto">
<div class="container mt-auto">
<footer class="pt-4">
<div class="row">
{FOOTER_LEFT}
{FOOTER_CENTER}
{FOOTER_RIGHT}
<!-- Footer Toggle Button (Visible on Small Screens) -->
<div class="text-center border-top context-main-border">
<button class="d-md-none my-3 btn btn-lg context-main context-main-border" type="button" data-bs-toggle="collapse" data-bs-target="#footerMenu" aria-controls="footerMenu" aria-expanded="false" aria-label="Toggle footer navigation">
<i class="fa fa-bars"></i>
</button>
</div>
<div class="d-flex flex-column flex-sm-row justify-content-between py-3 mt-2 border-top border-white">
<!-- Collapsible Footer Content -->
<div class="collapse d-md-block my-4" id="footerMenu">
<div class="row">
{FOOTER_LEFT}
{FOOTER_CENTER}
{FOOTER_RIGHT}
</div>
</div>
<!-- Copy & Social (Always Visible) -->
<div class="d-flex flex-column flex-md-row justify-content-md-between py-3 border-top context-main-border">
{COPY}
{SOCIAL}
</div>

View File

@ -1 +1,3 @@
<span>© 2025 {SITENAME}, Powered by <a href="https://thetempusproject.com" class="text-decoration-none">The Tempus Project</a>.</span>
<div class="d-flex justify-content-center justify-content-md-start text-center text-md-start">
<span>© 2025 {SITENAME}, Powered by <a href="https://thetempusproject.com" class="text-decoration-none">The Tempus Project</a></span>
</div>

View File

@ -1,4 +1,4 @@
<div class="col-6 col-md-2 mb-3 text-center">
<div class="col-12 col-sm-6 col-md-3 col-lg-2 mb-3 text-center">
<h5>Contact Us</h5>
<ul class="nav flex-column">
{LOOP}

View File

@ -1,4 +1,4 @@
<div class="col-6 col-md-2 mb-3 text-center">
<div class="col-12 col-sm-6 col-md-3 col-lg-2 mb-3 text-center">
<h5>Dark Mode</h5>
<div class="material-switch px-4 mt-2">
<input name="dark-mode-toggle" type="checkbox" id="dark-mode-toggle" class="form-check-input">

View File

@ -1,3 +1,4 @@
<div class="d-flex justify-content-center justify-content-md-end mt-3 mt-md-0">
<ul class="list-unstyled d-flex mb-0">
<li class="ms-3">
<a class="context-main" href="{ROOT_URL}fb">
@ -24,4 +25,5 @@
<span class="fa-brands fa-fw fa-github"></span>
</a>
</li>
</ul>
</ul>
</div>