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-13 08:48:31 -06:00
<!-- Base template stylesheets -->
2015-06-29 03:11:56 -05:00
< link type = "text/css" rel = "stylesheet" href = "{{ url_for('static', filename='css/bootstrap.css' if config.DEBUG else 'css/bootstrap.min.css')}}" / >
< link type = "text/css" rel = "stylesheet" href = "{{ url_for('static', filename='css/alertifyjs/alertify.css' if config.DEBUG else 'css/alertifyjs/alertify.min.css') }}" / >
< link type = "text/css" rel = "stylesheet" href = "{{ url_for('static', filename='css/alertifyjs/themes/bootstrap.css' if config.DEBUG else 'css/alertifyjs/themes/bootstrap.min.css') }}" / >
< link type = "text/css" rel = "stylesheet" href = "{{ url_for('static', filename='css/bootstrap-theme.min.css' if config.DEBUG else 'css/bootstrap-theme.css') }}" >
< link type = "text/css" rel = "stylesheet" href = "{{ url_for('static', filename='css/overrides.css') }}" >
2015-02-13 08:48:31 -06:00
<!-- View specified stylesheets -->
2015-06-29 02:54:05 -05:00
{% for stylesheet in current_app.stylesheets %}
2015-06-29 03:11:56 -05:00
< link type = "text/css" rel = "stylesheet" href = "{{ stylesheet }}" >
2015-06-29 01:58:41 -05:00
{% endfor %}
2015-02-13 08:48:31 -06:00
<!-- Base template scripts -->
2015-06-29 03:11:56 -05:00
< script type = "text/javascript" src = "{{ url_for('static', filename='js/modernizr-2.6.2-respond-1.1.0.min.js') }}" > < / script >
< script type = "text/javascript" src = "{{ url_for('static', filename='js/jquery-1.11.2.js' if config.DEBUG else 'js/jquery-1.11.2.min.js') }}" > < / script >
< script type = "text/javascript" src = "{{ url_for('static', filename='js/bootstrap.js' if config.DEBUG else 'js/bootstrap.min.js') }}" > < / script >
< script type = "text/javascript" src = "{{ url_for('static', filename='js/alertifyjs/alertify.js' if config.DEBUG else 'js/alertifyjs/alertify.min.js') }}" > < / script >
< script type = "text/javascript" src = "{{ url_for('static', filename='js/alertifyjs/pgadmin.defaults.js') }}" > < / script >
2015-02-13 08:48:31 -06:00
<!-- View specified scripts -->
2015-06-29 01:58:41 -05:00
2015-06-29 02:54:05 -05:00
{% for script in current_app.javascripts %}
2015-06-29 03:11:56 -05:00
< script type = "text/javascript" src = "{{ script }}" > < / script >
2015-06-29 01:58:41 -05:00
{% endfor %}
2015-02-13 08:48:31 -06:00
< / 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-05 08:06:20 -06:00
{% block body %}{% endblock %}
2015-01-20 11:02:04 -06:00
< / body >
< / html >