mirror of
https://github.com/getredash/redash.git
synced 2026-03-22 10:00:17 -04:00
38 lines
1.3 KiB
HTML
38 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
|
|
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
|
|
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
|
|
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
|
|
<head>
|
|
<title>{% block title %}{% endblock %}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<!-- build:css /styles/main_login.css -->
|
|
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.css">
|
|
<link rel="stylesheet" href="/styles/redash.css">
|
|
<link rel="stylesheet" href="/styles/login.css">
|
|
<!-- endbuild -->
|
|
|
|
<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>
|
|
|
|
{% include '_includes/signed_out_navbar.html' %}
|
|
|
|
<div class="container content">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
|
|
<!-- build:js /scripts/layout_vendor.js -->
|
|
<script src="/bower_components/jquery/jquery.js"></script>
|
|
<!-- endbuild -->
|
|
|
|
{% include '_includes/signed_out_tail.html' %}
|
|
|
|
</body>
|
|
</html>
|