mirror of
https://github.com/v1k45/pastepass.git
synced 2026-09-01 05:36:58 +00:00
40 lines
1.3 KiB
Templ
40 lines
1.3 KiB
Templ
package views
|
|
|
|
templ base() {
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="color-scheme" content="light dark" />
|
|
<link rel="stylesheet" href="/static/pico.min.css"/>
|
|
<title>Paste</title>
|
|
</head>
|
|
<body>
|
|
<main class="container">
|
|
<nav>
|
|
<ul>
|
|
<li>
|
|
<a href="/">PastePass</a> — secure one-time paste bin.
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
<hr />
|
|
{ children... }
|
|
<hr />
|
|
<footer>
|
|
<small>
|
|
<p style="color: #8891A4;">
|
|
PastePass is open-source and free to use. <a href="https://github.com/v1k45/pastepass">View source on github</a>.
|
|
</p>
|
|
<p style="color: #8891A4;">
|
|
Pasted content is encrypted and stored with an expiration time. Once the content is read, it is deleted from the server. <br/>
|
|
</p>
|
|
</small>
|
|
</footer>
|
|
</main>
|
|
<script src="/static/pastepass.js"></script>
|
|
</body>
|
|
</html>
|
|
}
|