mirror of
https://github.com/valitydev/redash.git
synced 2024-11-07 01:25:16 +00:00
20 lines
567 B
HTML
20 lines
567 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="{{base_href}}">
|
||
|
<title>Redash</title>
|
||
|
|
||
|
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32.png">
|
||
|
<link rel="icon" type="image/png" sizes="96x96" href="/images/favicon-96x96.png">
|
||
|
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16.png">
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<section>
|
||
|
<div ng-view></div>
|
||
|
</section>
|
||
|
</body>
|
||
|
</html>
|