bin/templates/base.html.tera
Gunwant Jain 1f84fd28b9 implement drag and drop
As a consquence of better UX, '/' post handler will now redirect instead
of returning a String.

Signed-off-by: Gunwant Jain <mail@wantguns.dev>
2021-06-19 06:49:43 +05:30

50 lines
1.2 KiB
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="Description"
content="Author: Gunwant Jain,
A highly opinionated and minamalistic Pastebin."
/>
<title>{{ title }}</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@460&display=swap');
/* fill entire page */
code {
padding: 0px;
background: transparent !important;
font-family: 'Fira Code', monospace;
}
body {
/* Change background color to that of your theme's */
background: #191f26;
padding: 20px 50px;
margin: 0px;
color: #E6E1CF;
/* color: #5c6773; */
}
::selection {
/* text selection color
make sure to change to your your preferred color if changing the default colorscheme */
background: #253340;
}
{% block styles %}
{% endblock styles %}
</style>
{% block head %} {% endblock head %}
</head>
<body>
{% block body %}{% endblock body %}
</body>
</html>