Initial commit: BalanceBoard - Reddit-style content aggregator

- Flask-based web application with PostgreSQL
- User authentication and session management
- Content moderation and filtering
- Docker deployment with docker-compose
- Admin interface for content management

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-10-11 16:11:13 -05:00
commit e821a26b48
35 changed files with 10736 additions and 0 deletions

57
templates/404.html Normal file
View File

@@ -0,0 +1,57 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Not Found - BalanceBoard</title>
<link rel="stylesheet" href="{{ url_for('serve_theme', filename='modern-card-ui/styles.css') }}">
<style>
.error-container {
max-width: 600px;
margin: 100px auto;
text-align: center;
padding: 40px;
}
.error-code {
font-size: 6rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 20px;
}
.error-message {
font-size: 1.5rem;
color: var(--text-primary);
margin-bottom: 30px;
}
.error-description {
color: var(--text-secondary);
margin-bottom: 40px;
line-height: 1.6;
}
.btn-home {
display: inline-block;
padding: 12px 24px;
background: var(--primary-color);
color: white;
text-decoration: none;
border-radius: 8px;
font-weight: 500;
transition: background-color 0.2s;
}
.btn-home:hover {
background: var(--primary-hover);
}
</style>
</head>
<body>
<div class="error-container">
<div class="error-code">404</div>
<h1 class="error-message">Page Not Found</h1>
<p class="error-description">
Sorry, the page you're looking for doesn't exist or has been moved.
The content you're trying to access might not be available yet.
</p>
<a href="{{ url_for('index') }}" class="btn-home">Go Home</a>
</div>
</body>
</html>