Merge branch 'gh-pages' into library-carpentry
[rnaseq-cwl-training.git] / _layouts / base.html
1 ---
2 ---
3 <!doctype html>
4 <html lang="en">
5   <head>
6     <meta charset="utf-8">
7     <meta http-equiv="X-UA-Compatible" content="IE=edge">
8     <meta http-equiv="last-modified" content="{{ site.time }}">
9     <meta name="viewport" content="width=device-width, initial-scale=1">
10     <!-- meta "search-domain" used for google site search function google_search() -->
11     <meta name="search-domain" value="{{ site.github.url }}">
12     <link rel="stylesheet" type="text/css" href="{{ page.root }}/assets/css/bootstrap.css" />
13     <link rel="stylesheet" type="text/css" href="{{ page.root }}/assets/css/bootstrap-theme.css" />
14     <link rel="stylesheet" type="text/css" href="{{ page.root }}/assets/css/lesson.css" />
15     {% if site.carpentry == "swc" %}
16     <link rel="shortcut icon" type="image/x-icon" href="/favicon-swc.ico" />
17     {% elsif site.carpentry == "dc" %}
18     <link rel="shortcut icon" type="image/x-icon" href="/favicon-dc.ico" />
19     {% elsif site.carpentry == "lc" %}
20     <link rel="shortcut icon" type="image/x-icon" href="/favicon-lc.ico" />
21     {% endif %}
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     <title>{{ site.title }}{% if page.title %}: {{ page.title }}{% endif %}</title>
29   </head>
30   <body>
31     <div class="container">
32       {% include navbar.html %}
33 {{ content }}
34       {% if site.kind == "workshop" %}
35       {% include workshop_footer.html %}
36       {% else %}
37       {% include lesson_footer.html %}
38       {% endif %}
39     </div>
40     {% include javascript.html %}
41   </body>
42 </html>