1
0
Fork 0
mirror of https://github.com/SunRed/haste-server.git synced 2024-11-23 17:50:19 +01:00

Improve HTML and mobile viewing slightly

* Add DOCTYPE declaration
* Set proper viewport scaling for mobile viewing
* Remove some tag closing not needed for HTML5
This commit is contained in:
Manuel 2021-02-14 20:34:46 +00:00
parent f93aac983a
commit c00f65a385
Signed by: Manuel
GPG key ID: 4085037435E1F07A

View file

@ -1,16 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<title>hastebin</title>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="solarized_dark.css"/>
<link rel="stylesheet" type="text/css" href="application.css"/>
<meta charset="utf-8">
<meta name="robots" content="noindex,nofollow">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<link rel="stylesheet" type="text/css" href="solarized_dark.css">
<link rel="stylesheet" type="text/css" href="application.css">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="highlight.min.js"></script>
<script type="text/javascript" src="application.min.js"></script>
<meta name="robots" content="noindex,nofollow"/>
<script type="text/javascript">
let app = null;
// Handle pops
@ -39,8 +40,6 @@
});
</script>
</head>
<body>
<ul id="messages"></ul>
@ -64,6 +63,4 @@
<div id="linenos"></div>
<pre id="box" style="display: none;" class="hljs" tabindex="0"><code></code></pre>
<textarea spellcheck="false" style="display: none;"></textarea>
</body>
</html>
<textarea spellcheck="false" style="display: none;"></textarea>