blob: d952cb31ab3e6082c6dcd7f97ba50d184552a86f (
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
|
{% 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>Genenetwork 3: {%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="{{url_for('static', filename='css/styles.css')}}" />
{%block css%}{%endblock%}
</head>
<body>
<h1>Genenetwork3: {%block pagetitle%}{%endblock%}</h1>
<div class="container">
{%block content%}{%endblock%}
</div>
{%block js%}{%endblock%}
<body>
</html>
|