snapshot: preserve shared base shell foundation

This commit is contained in:
Md Bayazid Bostame
2026-03-24 17:43:01 +01:00
parent 815c805b08
commit 5c6d300c4e
22 changed files with 615 additions and 176 deletions

View File

@@ -1,11 +1,9 @@
{% extends 'workflows/base_shell.html' %}
{% load static i18n %}
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{% trans "Handbook" %}</title>
<link rel="stylesheet" href="{% static 'workflows/css/buttons.css' %}" />
{% block title %}{% trans "Handbook" %}{% endblock %}
{% block extra_head %}
<style>
body { margin: 0; font-family: Arial, sans-serif; background: #f4f8ff; color: #1b2b43; padding: 20px; }
.shell { max-width: 1120px; margin: 0 auto; background: #fff; border: 1px solid #d7e0ea; border-radius: 14px; padding: 18px; }
@@ -23,13 +21,12 @@
.actions { display: flex; gap: 8px; flex-wrap: wrap; }
@media (max-width: 760px) { .grid { grid-template-columns: 1fr; } }
</style>
</head>
<body>
<div class="shell">
<img class="brand-logo" src="{% static 'workflows/img/tubco-logo.svg' %}" alt="TUB/CO Logo" />
{% endblock %}
{% block shell_body %}
{% include 'workflows/includes/app_header.html' with header_show_home=1 header_inside_shell=1 %}
<div class="top">
<h1>{% trans "Handbook" %}</h1>
<a class="btn btn-secondary" href="/">{% trans "Back to Home" %}</a>
</div>
<p class="sub">{% trans "Single documentation entry point for both operational knowledge and long-term engineering knowledge." %}</p>
@@ -79,6 +76,5 @@
</div>
</section>
</div>
</div>
</body>
</html>
{% endblock %}