Refactor code structure and remove redundant changes

This commit is contained in:
pacnpal
2025-11-09 16:31:34 -05:00
parent 2884bc23ce
commit eb68cf40c6
1080 changed files with 27361 additions and 56687 deletions

View File

@@ -0,0 +1,102 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}ThrillWiki{% endblock %}</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
line-height: 1.6;
color: #333;
max-width: 600px;
margin: 0 auto;
padding: 20px;
background-color: #f5f5f5;
}
.email-container {
background-color: #ffffff;
border-radius: 8px;
padding: 30px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header {
text-align: center;
padding-bottom: 20px;
border-bottom: 2px solid #22c55e;
margin-bottom: 30px;
}
.logo {
font-size: 32px;
font-weight: bold;
color: #22c55e;
margin: 0;
}
.tagline {
color: #666;
font-size: 14px;
margin: 5px 0 0 0;
}
.content {
color: #333;
font-size: 16px;
}
.button {
display: inline-block;
padding: 12px 24px;
background-color: #22c55e;
color: #ffffff !important;
text-decoration: none;
border-radius: 6px;
margin: 20px 0;
font-weight: 600;
}
.button:hover {
background-color: #16a34a;
}
.footer {
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #e5e5e5;
font-size: 12px;
color: #666;
text-align: center;
}
.info-box {
background-color: #f0fdf4;
border-left: 4px solid #22c55e;
padding: 15px;
margin: 20px 0;
border-radius: 4px;
}
.warning-box {
background-color: #fef3c7;
border-left: 4px solid #f59e0b;
padding: 15px;
margin: 20px 0;
border-radius: 4px;
}
</style>
</head>
<body>
<div class="email-container">
<div class="header">
<h1 class="logo">🎢 ThrillWiki</h1>
<p class="tagline">The Ultimate Roller Coaster Database</p>
</div>
<div class="content">
{% block content %}{% endblock %}
</div>
<div class="footer">
<p>This email was sent by ThrillWiki.</p>
<p>
If you have any questions, please contact us at
<a href="mailto:support@thrillwiki.com">support@thrillwiki.com</a>
</p>
<p>&copy; {% now "Y" %} ThrillWiki. All rights reserved.</p>
</div>
</div>
</body>
</html>