You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.1 KiB
87 lines
2.1 KiB
<!DOCTYPE HTML>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
<title>{% block title %}IPython Notebook{% end %}</title>
|
|
|
|
<link rel="stylesheet" href="{{static_url("jquery/css/themes/base/jquery-ui.min.css") }}" type="text/css" />
|
|
<link rel="stylesheet" href="{{static_url("css/boilerplate.css") }}" type="text/css" />
|
|
<link rel="stylesheet" href="{{static_url("css/layout.css") }}" type="text/css" />
|
|
<link rel="stylesheet" href="{{static_url("css/base.css") }}" type="text/css"/>
|
|
{% block stylesheet %}
|
|
{% end %}
|
|
|
|
{% block meta %}
|
|
{% end %}
|
|
|
|
</head>
|
|
|
|
<body {% block params %}{% end %}>
|
|
|
|
<div id="header">
|
|
<span id="ipython_notebook"><h1><img src='{{static_url("ipynblogo.png") }}' alt='IPython Notebook'/></h1></span>
|
|
|
|
{% block login_widget %}
|
|
|
|
<span id="login_widget">
|
|
{% if logged_in %}
|
|
<button id="logout">Logout</button>
|
|
{% elif login_available and not logged_in %}
|
|
<button id="login">Login</button>
|
|
{% end %}
|
|
</span>
|
|
|
|
{% end %}
|
|
|
|
{% block header %}
|
|
{% end %}
|
|
</div>
|
|
|
|
<div id="header_border"></div>
|
|
|
|
<div id="main_app">
|
|
|
|
<div id="app_hbox">
|
|
|
|
<div id="left_panel">
|
|
{% block left_panel %}
|
|
{% end %}
|
|
</div>
|
|
|
|
<div id="content_panel">
|
|
{% if message %}
|
|
|
|
{% for key in message %}
|
|
<div class="message {{key}}">
|
|
{{message[key]}}
|
|
</div>
|
|
{% end %}
|
|
{% end %}
|
|
|
|
{% block content_panel %}
|
|
{% end %}
|
|
</div>
|
|
<div id="right_panel">
|
|
{% block right_panel %}
|
|
{% end %}
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script src="{{static_url("jquery/js/jquery-1.7.1.min.js") }}" type="text/javascript" charset="utf-8"></script>
|
|
<script src="{{static_url("jquery/js/jquery-ui.min.js") }}" type="text/javascript" charset="utf-8"></script>
|
|
<script src="{{static_url("js/namespace.js") }}" type="text/javascript" charset="utf-8"></script>
|
|
<script src="{{static_url("js/loginmain.js") }}" type="text/javascript" charset="utf-8"></script>
|
|
<script src="{{static_url("js/loginwidget.js") }}" type="text/javascript" charset="utf-8"></script>
|
|
|
|
{% block script %}
|
|
{% end %}
|
|
|
|
</body>
|
|
|
|
</html>
|