Files
Krystie 092a8bc7ce refactor: organize codebase and remove redundant files
- Removed all backup/duplicate files
- Removed test files from root
- Consolidated documentation to /docs/
- Moved scripts to /scripts/
- Renamed f_* directories (removed prefix)
- Organized icons and assets
- Removed unused vendor directories
- Cleaned up redundant config files
2026-03-30 16:34:45 -07:00

23 lines
920 B
Smarty

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{$page_title|default:"EasyStream"}</title>
<link rel="stylesheet" href="/f_scripts/fe/css/enhanced.css">
<link rel="stylesheet" href="/f_scripts/fe/css/homepage.css">
<style>
body { font-family: Arial, sans-serif; margin: 0; padding: 0; background: #f8f9fa; }
.container { max-width: 1200px; margin: 0 auto; padding: 20px; }
.btn { display: inline-block; padding: 10px 20px; background: #007bff; color: white; text-decoration: none; border-radius: 5px; border: none; cursor: pointer; }
.btn:hover { background: #0056b3; }
.btn-secondary { background: #6c757d; }
.btn-secondary:hover { background: #545b62; }
</style>
</head>
<body>
<div class="container">
{$content}
</div>
</body>
</html>