15567228f16a59dcf5d3e5d54f77c407d873f83e
[rnaseq-cwl-training.git] / _layouts / base.html
1 ---
2 ---
3 {% include base_path.html %}
4 {% include gh_variables.html %}
5
6 <!doctype html>
7 <html lang="en">
8   <head>
9     <meta charset="utf-8">
10     <meta http-equiv="X-UA-Compatible" content="IE=edge">
11     <meta http-equiv="last-modified" content="{{ site.time }}">
12     <meta name="viewport" content="width=device-width, initial-scale=1">
13     <!-- meta "search-domain" used for google site search function google_search() -->
14     <meta name="search-domain" value="{{ search_domain_url }}">
15     <link rel="stylesheet" type="text/css" href="{{ relative_root_path }}/assets/css/bootstrap.css" />
16     <link rel="stylesheet" type="text/css" href="{{ relative_root_path }}/assets/css/bootstrap-theme.css" />
17     <link rel="stylesheet" type="text/css" href="{{ relative_root_path }}/assets/css/lesson.css" />
18     <link rel="stylesheet" type="text/css" href="{{ relative_root_path }}/assets/css/syntax.css" />
19
20     {% include favicons.html %}
21
22     <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
23     <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
24     <!--[if lt IE 9]>
25         <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
26         <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
27         <![endif]-->
28
29   <title>
30   {% if page.title %}{{ page.title }}: {% endif %}
31   {% if site.title %}{{ site.title }}{% endif %}
32   </title>  
33
34   </head>
35   <body>
36
37     {% include life_cycle.html %}
38
39     <div class="container">
40       {% include navbar.html %}
41 {{ content }}
42       {% if site.kind == "workshop" %}
43       {% include workshop_footer.html %}
44       {% else %}
45       {% include lesson_footer.html %}
46       {% endif %}
47     </div>
48     {% include javascript.html %}
49   </body>
50 </html>