mirror of
https://github.com/jhillyerd/inbucket.git
synced 2025-12-26 22:17:10 +00:00
27 lines
910 B
HTML
27 lines
910 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<base href="{{ .BasePath }}">
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="theme-color" content="#000000">
|
|
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
|
|
<meta http-equiv="Pragma" content="no-cache">
|
|
<meta http-equiv="Expires" content="0">
|
|
<link rel="stylesheet" href="./main.css">
|
|
<link rel="stylesheet" href="./navbar.css">
|
|
<link rel="stylesheet" href="./mailbox.css">
|
|
<link rel="icon" type="image/png" href="./favicon.png">
|
|
<link rel="manifest" href="./manifest.json">
|
|
<title>Inbucket</title>
|
|
</head>
|
|
<body>
|
|
<noscript>
|
|
You need to enable JavaScript to run this app.
|
|
</noscript>
|
|
<div id="root"></div>
|
|
<script type="module" src="index.js"></script>
|
|
</body>
|
|
</html>
|