blob: b452ca1ad0fdbe6f59f0cedfdc75d5d8f877c17a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
{% from "common-macros.html" import flash_messages%}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>gn-auth: {%block title%}{%endblock%}</title>
<link rel="stylesheet" type="text/css"
href="https://genenetwork.org/static/new/css/bootstrap-custom.css" />
<link rel="stylesheet" type="text/css"
href="https://genenetwork.org/static/new/css/non-responsive.css" />
<link rel="stylesheet" type="text/css"
href="{{url_for('static', filename='css/styles.css')}}" />
<link rel="stylesheet" type="text/css"
href="https://genenetwork.org/static/new/css/docs.css" />
<link rel="stylesheet" type="text/css"
href="https://genenetwork.org/static/new/css/colorbox.css" />
<link rel="stylesheet" type="text/css"
href="https://genenetwork.org/static/new/css/parsley.css" />
<link rel="stylesheet" type="text/css"
href="https://genenetwork.org/static/new/css/broken_links.css" />
<link rel="stylesheet"
href="https://genenetwork.org/static/new/css/autocomplete.css" />
{%block css%}{%endblock%}
</head>
<body style="width: 100%">
<div class="navbar navbar-inverse navbar-static-top pull-left"
role="navigation"
style="width: 100%; min-width: 850px; white-space: nowrap">
<div class="container-fluid" style="width: 100%;">
<ul class="nav navbar-nav">
<li>
<a href="{{source_uri or 'https://genenetwork.org/'}}"
title="Back to main GeneNetwork site."
style="font-weight: bold;">GeneNetwork</a>
</li>
<li>
<a href="#">gn-auth: {%block pagetitle%}{%endblock%}</a>
</li>
</ul>
</div>
</div>
<div class="container">
{%block content%}{%endblock%}
</div>
{%block js%}{%endblock%}
<body>
</html>
|