Forcing CSS and Javascript to be loaded via HTTPS.
[rnaseq-cwl-training.git] / _layouts / workshop.html
1 ---
2 ---
3 <!doctype html>
4 <html lang="en">
5   <head>
6
7     <meta name="slug" content="{{site.github.project_title}}" />
8     <meta name="startdate" content="{{page.startdate}}" />
9     <meta name="enddate" content="{{page.enddate}}" />
10     <meta name="humandate" content="{{page.humandate}}" />
11     <meta name="country" content="{{page.country}}" />
12     <meta name="venue" content="{{page.venue}}" />
13     <meta name="address" content="{{page.address}}" />
14     <meta name="latlng" content="{{page.latlng}}" />
15     <meta name="language" content="{{page.language}}" />
16     <meta name="eventbrite" content="{{page.eventbrite}}" />
17     <meta name="instructor" content="{{page.instructor|join:'|'}}" />
18     <meta name="helper" content="{{page.helper|join:'|'}}" />
19     <meta name="contact" content="{{page.contact}}" />
20     {% if page.redirect %}
21     <meta http-equiv="refresh" content="0; url={{page.redirect}}" />
22     {% endif %}
23
24     <meta charset="utf-8">
25     <meta http-equiv="X-UA-Compatible" content="IE=edge">
26     <meta http-equiv="last-modified" content="{{ site.time }}">
27     <meta name="viewport" content="width=device-width, initial-scale=1">
28     <link rel="stylesheet" type="text/css" href="{{ site.github.url | replace_first: 'http:', 'https:' }}/assets/css/bootstrap.css" />
29     <link rel="stylesheet" type="text/css" href="{{ site.github.url | replace_first: 'http:', 'https:' }}/assets/css/bootstrap-theme.css" />
30     <link rel="stylesheet" type="text/css" href="{{ site.github.url | replace_first: 'http:', 'https:' }}/assets/css/lesson.css" />
31     {% if site.carpentry == "swc" %}
32     <link rel="shortcut icon" type="image/x-icon" href="/favicon-swc.ico" />
33     {% endif %}
34     {% if site.carpentry == "dc" %}
35     <link rel="shortcut icon" type="image/x-icon" href="/favicon-dc.ico" />
36     {% endif %}
37     <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
38     <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
39     <!--[if lt IE 9]>
40         <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
41         <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
42         <![endif]-->
43     <title>{{ page.venue }}: {{ page.humandate }}</title>
44   </head>
45   <body>
46     <div class="container">
47       {% include navbar.html %}
48       {% include workshop_ad.html %}
49 {{ content }}
50       {% include workshop_footer.html %}
51     </div>
52     {% include javascript.html %}
53   </body>
54 </html>