Files
Owlbot/owlbot/templates/base.html
T
LogalDeveloper 410c0cd791
CI / Formatting (push) Successful in 13s
CI / Linting (push) Successful in 14s
CI / Tests (Python 3.12) (push) Failing after 29s
CI / Tests (Python 3.13) (push) Failing after 29s
CI / Tests (Python 3.14) (push) Failing after 26s
CI / Type Checking (push) Failing after 25s
CI / Spelling (push) Successful in 13s
Added centralized templating system with static asset serving.
2026-02-27 10:05:52 -05:00

20 lines
676 B
HTML

<!DOCTYPE html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/owlbot/static/bootstrap.min.css">
<title>{% block title %}Owlbot{% endblock %}</title>
{% block head %}{% endblock %}
</head>
<body class="container d-flex flex-column gap-3 min-vh-100 pt-4">
<main class="flex-grow-1">
{% block content %}{% endblock %}
</main>
<footer class="py-3 border-top">
<small class="text-body-secondary">Powered by Owlbot v{{ owlbot_version }}</small>
</footer>
{% block scripts %}{% endblock %}
</body>
</html>