2015-01-20 11:02:04 -06:00
<!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 >
< meta charset = "utf-8" >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge,chrome=1" >
< title > {% block title %}{% endblock %}< / title >
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
< meta name = "dcterms.rightsHolder" content = "The pgAdmin Development Team" >
< meta name = "dcterms.rights" content = "All rights reserved" >
< meta name = "dcterms.dateCopyrighted" content = "2014 - 2015" >
2015-02-05 08:06:20 -06:00
< link rel = "stylesheet" href = "{{ url_for('static', filename='css/jquery-layout/layout-default.css') }}" / >
2015-02-12 04:28:15 -06:00
{% if config.DEBUG %}< link rel = "stylesheet" href = "{{ url_for('static', filename='css/bootstrap.css') }}" / > {% else %}< link rel = "stylesheet" href = "{{ url_for('static', filename='css/bootstrap.min.css') }}" / > {% endif %}
{% if config.DEBUG %}< link rel = "stylesheet" href = "{{ url_for('static', filename='css/alertifyjs/alertify.css') }}" / > {% else %}< link rel = "stylesheet" href = "{{ url_for('static', filename='css/alertifyjs/alertify.min.css') }}" / > {% endif %}
{% if config.DEBUG %}< link rel = "stylesheet" href = "{{ url_for('static', filename='css/alertifyjs/themes/bootstrap.css') }}" / > {% else %}< link rel = "stylesheet" href = "{{ url_for('static', filename='css/alertifyjs/themes/bootstrap.min.css') }}" / > {% endif %}
{% if config.DEBUG %}< link rel = "stylesheet" href = "{{ url_for('static', filename='css/jquery-ui/jquery-ui.css') }}" / > {% else %}< link rel = "stylesheet" href = "{{ url_for('static', filename='css/jquery-ui/jquery-ui.min.css') }}" / > {% endif %}
2015-01-20 11:02:04 -06:00
< style >
body {
padding-top: 50px;
padding-bottom: 20px;
}
< / style >
2015-02-12 04:28:15 -06:00
{% if config.DEBUG %}< link rel = "stylesheet" href = "{{ url_for('static', filename='css/bootstrap-theme.min.css') }}" > {% else %}< link rel = "stylesheet" href = "{{ url_for('static', filename='css/bootstrap-theme.min.css') }}" > {% endif %}
2015-01-20 11:02:04 -06:00
< link rel = "stylesheet" href = "{{ url_for('static', filename='css/overrides.css') }}" >
< script src = "{{ url_for('static', filename='js/vendor/modernizr-2.6.2-respond-1.1.0.min.js') }}" > < / script >
< / head >
< body >
<!-- [if lt IE 7]>
< p class = "browsehappy" > You are using an < strong > outdated< / strong > browser. Please < a href = "http://browsehappy.com/" > upgrade your browser< / a > to improve your experience.< / p >
<![endif]-->
2015-02-12 04:28:15 -06:00
{% if config.DEBUG %}< script src = "{{ url_for('static', filename='js/vendor/jquery-1.11.2.js') }}" > { % else % } < script src = "{{ url_for('static', filename='js/vendor/jquery-1.11.2.min.js') }}" > { % endif % } < / script >
{% if config.DEBUG %}< script src = "{{ url_for('static', filename='js/vendor/bootstrap.js') }}" > { % else % } < script src = "{{ url_for('static', filename='js/vendor/bootstrap.min.js') }}" > { % endif % } < / script >
{% if config.DEBUG %}< script src = "{{ url_for('static', filename='js/vendor/alertifyjs/alertify.js') }}" > { % else % } < script src = "{{ url_for('static', filename='js/vendor/alertifyjs/alertify.min.js') }}" > { % endif % } < / script >
{% if config.DEBUG %}< script src = "{{ url_for('static', filename='js/vendor/jquery-ui/jquery-ui.js') }}" > { % else % } < script src = "{{ url_for('static', filename='js/vendor/jquery-ui/jquery-ui.min.js') }}" > { % endif % } < / script >
{% if config.DEBUG %}< script src = "{{ url_for('static', filename='js/vendor/jquery-layout/jquery.layout.js') }}" > { % else % } < script src = "{{ url_for('static', filename='js/vendor/jquery-layout/jquery.layout.min.js') }}" > { % endif % } < / script >
2015-02-11 04:00:57 -06:00
< script src = "{{ url_for('static', filename='js/vendor/jquery-layout/plugins/jquery.layout.state.js') }}" > < / script >
2015-01-28 09:57:03 -06:00
2015-02-06 07:15:36 -06:00
< script >
2015-01-28 09:57:03 -06:00
alertify.defaults.transition = "zoom";
alertify.defaults.theme.ok = "btn btn-primary";
alertify.defaults.theme.cancel = "btn btn-danger";
alertify.defaults.theme.input = "form-control";
< / script >
2015-02-05 08:06:20 -06:00
{% block body %}{% endblock %}
2015-01-20 11:02:04 -06:00
< / body >
< / html >