mirror of
https://github.com/valitydev/redash.git
synced 2024-11-08 01:48:54 +00:00
9aab74d8e7
- Add meta tag to scalae UI properly in small resolutions - Make the menu button work (great) again. - Change menu background color.
20 lines
579 B
HTML
20 lines
579 B
HTML
<!DOCTYPE html>
|
|
<html ng-app="app">
|
|
<head lang="en">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta charset="UTF-8">
|
|
<base href="/">
|
|
<title>Redash</title>
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="96x96" href="./assets/images/favicon-96x96.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="./assets/images/favicon-16x16.png">
|
|
</head>
|
|
|
|
<body>
|
|
<section>
|
|
<div ng-view></div>
|
|
</section>
|
|
</body>
|
|
</html>
|