chore: remove stray template backup

This commit is contained in:
Sean McElwain 2026-04-25 01:43:53 -05:00
parent 7b5485db61
commit 0400509b6e
1 changed files with 0 additions and 38 deletions

View File

@ -1,38 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{% block title %}Document Processor{% endblock %}</title>
<link rel="stylesheet" href="/static/app.css?v=15">
</head>
<body>
<div class="app-shell">
{% include "partials/sidebar.html" %}
{% include "partials/header.html" %}
<main class="main">
<div class="main-content">
{% block content %}{% endblock %}
</div>
</main>
</div>
<script>
document.addEventListener("DOMContentLoaded", () => {
const menuToggle = document.getElementById("menu-toggle");
const appShell = document.querySelector(".app-shell");
if (!menuToggle || !appShell) return;
const toggleNav = () => appShell.classList.toggle("nav-open");
menuToggle.addEventListener("click", toggleNav);
menuToggle.addEventListener("keydown", (e) => {
if (e.key === "Enter" || e.key === " ") {
e.preventDefault();
toggleNav();
}
});
});
</script>
</body>
</html>