Skip to content
This repository was archived by the owner on Jun 13, 2023. It is now read-only.

Commit 690365f

Browse files
committed
fixed mixed content
1 parent 07edacd commit 690365f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

_layouts/2014/default.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
<meta property="og:site_name" content="VimConf - Vim Conference">
1212
<meta name="viewport" content="width=device-width, initial-scale=1">
1313
<title>{{page.title | liquify}} - VimConf 2014</title>
14-
<base href="{{site.github.url}}{{site.data.y2014.root}}/" target="_self">
14+
<base href="{{site.github.url | replace: 'http://', '//'}}{{site.data.y2014.root}}/" target="_self">
1515
<link rel="stylesheet" href="default.css">{%for css in page.stylesheets%}
1616
<link rel="stylesheet" href="{{css}}">{%endfor%}
1717
</head>
18-
<body{%if page.class.body%} class="{{page.class.body}}"{%endif%}>
18+
<body{%if page.class.body%} class="{{page.class.body | replace: 'http://', '//'}}"{%endif%}>
1919
{{content}}</body>
2020
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>{%for js in page.javascripts%}
2121
<script src="{{js}}"></script>{%endfor%}

_layouts/2015/default.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<meta property="og:description" content="{{page.summary|liquify|markdownify|strip_html}}">{%endif%}
1010
<meta property="og:site_name" content="VimConf 2015 - Vim Conference">
1111
<title>{{page.title | liquify}}</title>
12-
<base href="{{site.github.url}}/2015/" target="_self">
12+
<base href="{{site.github.url | replace: 'http://', '//'}}/2015/" target="_self">
1313
<link rel="stylesheet" href="default.css">{%for css in page.stylesheets%}
1414
<link rel="stylesheet" href="{{css}}">{%endfor%}
1515
<link rel='stylesheet' href='//fonts.googleapis.com/css?family=Ubuntu:300,400'>

_layouts/2016/default.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<meta property="og:description" content="{{page.summary|liquify|markdownify|strip_html}}">{%endif%}
1010
<meta property="og:site_name" content="VimConf 2016 - Vim Conference">
1111
<title>{{page.title | liquify}}</title>
12-
<base href="{{site.github.url}}/2016/" target="_self">
12+
<base href="{{site.github.url | replace: 'http://', '//'}}/2016/" target="_self">
1313
<link rel="stylesheet" href="default.css">
1414
<link href="//fonts.googleapis.com/css?family=Bungee+Hairline|Bungee+Outline|Bungee+Inline" rel="stylesheet">
1515
</head>

_layouts/2017/default.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<meta property="og:description" content="{{page.summary|liquify|markdownify|strip_html}}">{%endif%}
1212
<meta property="og:site_name" content="VimConf 2017 - Vim Conference">
1313
<title>{{page.title | liquify}}</title>
14-
<base href="{{site.github.url}}/2017/" target="_self">
14+
<base href="{{site.github.url | replace: 'http://', '//'}}/2017/" target="_self">
1515
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:300,400,500,700" type="text/css">
1616
<link rel="stylesheet" href="//fonts.googleapis.com/icon?family=Material+Icons">
1717
<link rel="stylesheet" href="//code.getmdl.io/1.3.0/material.teal-red.min.css" />

0 commit comments

Comments
 (0)