Files
pastepass/views/base.templ
T
2024-06-02 10:33:54 +05:30

39 lines
1.2 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="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css"/>
<title>Paste</title>
</head>
<body>
<main class="container">
<nav>
<ul>
<li>
<a href="/">Paste</a> &mdash; secure one-time paste bin.
</li>
</ul>
</nav>
<hr />
{ children... }
<hr />
<footer>
<small>
<p style="color: #8891A4;">
Paste is open-source and free to use. <a href="https://github.com/v1k45/paste">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>
</body>
</html>
}