digital-branding-system/templates/base.html
thecyberlearn c10d4692e6 Initial commit: Django Digital Branding Management System
- Core Django project structure with branding_system and dashboard apps
- Platform, ContentDeliverable, and Strategy models with relationships
- Comprehensive Django admin interface with custom displays
- Dashboard views with completion tracking and overdue detection
- Tailwind CSS styling with custom color scheme
- WARP.md documentation for development guidance
2025-09-07 10:16:37 +05:30

67 lines
2.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Digital Branding Management System{% endblock %}</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
'brand-blue': '#3B82F6',
'brand-green': '#10B981',
'brand-orange': '#F59E0B',
'brand-red': '#EF4444',
'brand-purple': '#8B5CF6',
}
}
}
}
</script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
{% block extra_css %}{% endblock %}
</head>
<body class="bg-gray-50 min-h-screen">
<!-- Navigation -->
<nav class="bg-white shadow-sm border-b border-gray-200">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<h1 class="text-xl font-semibold text-gray-900">
<i class="fas fa-chart-pie text-brand-blue mr-2"></i>
Digital Branding Management
</h1>
</div>
<div class="flex items-center space-x-4">
<a href="/" class="text-gray-700 hover:text-brand-blue px-3 py-2 rounded-md text-sm font-medium">
Dashboard
</a>
<a href="/admin/" class="text-gray-700 hover:text-brand-blue px-3 py-2 rounded-md text-sm font-medium">
Admin
</a>
</div>
</div>
</div>
</nav>
<!-- Main Content -->
<main class="max-w-7xl mx-auto py-6 sm:px-6 lg:px-8">
{% block content %}
{% endblock %}
</main>
<!-- Footer -->
<footer class="bg-white border-t border-gray-200 mt-12">
<div class="max-w-7xl mx-auto py-4 px-4 sm:px-6 lg:px-8">
<p class="text-center text-sm text-gray-500">
&copy; 2024 Digital Branding Management System
</p>
</div>
</footer>
{% block extra_js %}{% endblock %}
</body>
</html>