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:
parent
f93aac983a
commit
c00f65a385
1 changed files with 7 additions and 10 deletions
|
@ -1,16 +1,17 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>hastebin</title>
|
<title>hastebin</title>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8">
|
||||||
<link rel="stylesheet" type="text/css" href="solarized_dark.css"/>
|
<meta name="robots" content="noindex,nofollow">
|
||||||
<link rel="stylesheet" type="text/css" href="application.css"/>
|
<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="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="highlight.min.js"></script>
|
||||||
<script type="text/javascript" src="application.min.js"></script>
|
<script type="text/javascript" src="application.min.js"></script>
|
||||||
|
|
||||||
<meta name="robots" content="noindex,nofollow"/>
|
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
let app = null;
|
let app = null;
|
||||||
// Handle pops
|
// Handle pops
|
||||||
|
@ -39,8 +40,6 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<ul id="messages"></ul>
|
<ul id="messages"></ul>
|
||||||
|
|
||||||
|
@ -65,5 +64,3 @@
|
||||||
<div id="linenos"></div>
|
<div id="linenos"></div>
|
||||||
<pre id="box" style="display: none;" class="hljs" tabindex="0"><code></code></pre>
|
<pre id="box" style="display: none;" class="hljs" tabindex="0"><code></code></pre>
|
||||||
<textarea spellcheck="false" style="display: none;"></textarea>
|
<textarea spellcheck="false" style="display: none;"></textarea>
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
Loading…
Reference in a new issue