mirror of
https://github.com/Crazyco-xyz/48hr.email.git
synced 2026-01-10 19:39:34 +01:00
Introduces detailed debug logging throughout the application to aid troubleshooting and monitoring, unifying the debug namespace usage. Refactors configuration files for clarity, adds missing environment variables, and updates example values and documentation. Enhances screenshots management by hosting assets locally. Updates scripts for better development and production workflows. Improves comments for maintainability and adjusts minor UI meta tags.
19 lines
800 B
Twig
19 lines
800 B
Twig
{% block body %}
|
|
<head>
|
|
<title>{{ title }}</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimal-ui">
|
|
<meta name="darkreader-lock">
|
|
<meta name="description" content="Dont give shady companies your real email. Use 48hr.email to protect your privacy!">
|
|
<meta property="og:image" content="/images/logo.png">
|
|
|
|
<link rel="shortcut icon" href="/images/logo.ico">
|
|
<link rel='stylesheet' href='/dependencies/milligram.css' />
|
|
<link rel='stylesheet' href='/stylesheets/custom.css' />
|
|
|
|
<script src="/socket.io/socket.io.js" defer="true"></script>
|
|
<script src="/javascripts/notifications.js" defer="true"></script>
|
|
|
|
</head>
|
|
{{ mail | raw }}
|
|
{% endblock %}
|