48hr.email/infrastructure/web/views/layout.twig

38 lines
1.3 KiB
Plaintext
Raw Normal View History

2023-11-01 11:48:19 +01:00
<!DOCTYPE html>
<html>
<head>
<title>{{ title }}</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimal-ui">
<meta name="darkreader" content="stfu">
<meta name="description" content="Dont give shady companies your real email. Use 48hr.email to protect your privacy!">
2023-11-02 07:41:52 +01:00
<meta property="og:image" content="/images/logo.png">
2023-11-01 11:48:19 +01:00
2023-11-02 07:41:52 +01:00
<link rel="shortcut icon" href="/images/logo.ico">
2023-11-01 11:48:19 +01:00
<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>
<body>
<main>
2023-11-01 12:33:58 +01:00
<a href="/">
2023-11-02 07:41:52 +01:00
<img src="/images/logo.png" class="logo" style="max-width: 75px">
2023-11-01 11:48:19 +01:00
</a>
{% block body %}{% endblock %}
</main>
{% block footer %}
<section class="container footer">
<hr>
2024-10-02 14:50:40 +02:00
<h4>{{ branding[0] }} offered by <a href="{{ branding[2] }}" style="text-decoration:underline" target="_blank">{{ branding[1] }}</a> | All Emails will be deleted after 48hrs | This project is <a href="https://github.com/crazyco-xyz/48hr.email" style="text-decoration:underline" target="_blank">open-source ♥</a></h4>
2023-11-01 11:48:19 +01:00
</section>
{% endblock %}
</body>
</html>