blob: 623141a189693bc81f42e1a593291520053b8501 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  | 
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta application-name="GeneNetwork Quality-Control Application" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    {%block extrameta%}{%endblock%}
    <title>QC: {%block title%}{%endblock%}</title>
    <link rel="stylesheet" type="text/css" href="/static/css/styles.css" />
    {%block css%}{%endblock%}
  </head>
  <body>
    {%block contents%}{%endblock%}
    {%block javascript%}{%endblock%}
  </body>
</html>
 
  |