bin/templates/base.html.tera
Gunwant Jain 3e10267caf Add visual cue for uploading files
Unfortunately, since fetch API does not support getting progress while
perfoming uploads, we cannot have a more dynamic cue

Signed-off-by: Gunwant Jain <mail@wantguns.dev>
2021-12-26 09:58:58 +05:30

44 lines
1000 B
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>
/* fill entire page */
code {
background: transparent !important;
font-family: monospace;
}
body {
/* Change background color to that of your theme's */
background: #0f1419;
padding: 10px;
color: #E6E1CF;
}
::selection {
/* text selection color
make sure to change to your your preferred color if changing the default colorscheme */
background: #253340;
}
</style>
{% block styles %}
{% endblock styles %}
{% block head %} {% endblock head %}
</head>
<body>
{% block body %}{% endblock body %}
</body>
</html>