Skip to content

Commit 26b150f

Browse files
committed
WIP: fixing https
1 parent f35894a commit 26b150f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

website/pelicanconf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
TWITTER = 'https://twitter.com/cyrillerossant'
1010
GITHUB = 'https://github.com/ipython-books/cookbook-2nd'
1111
CODE = 'https://github.com/ipython-books/cookbook-2nd-code'
12-
AUTHOR_WEBSITE = 'http://cyrille.rossant.net'
12+
AUTHOR_WEBSITE = 'https://cyrille.rossant.net'
1313
MINIBOOK = 'https://github.com/ipython-books/minibook-2nd-code'
1414

1515
PATH = 'content'

website/publishconf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
sys.path.append(os.curdir)
1111
from pelicanconf import *
1212

13-
SITEURL = 'http://ipython-books.github.io'
13+
SITEURL = 'https://ipython-books.github.io'
1414
RELATIVE_URLS = False
1515

1616
FEED_ALL_ATOM = 'feeds/all.atom.xml'

website/themes/pure/templates/base.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@
4545
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
4646
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/pure/0.3.0/pure-min.css">
4747
<!--[if lte IE 8]>
48-
<link rel="stylesheet" href="https://yui.yahooapis.com/pure/0.5.0/grids-responsive-old-ie-min.css">
48+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/pure/0.5.0/pure-min.css">
4949
<![endif]-->
5050
<!--[if gt IE 8]><!-->
51-
<link rel="stylesheet" href="https://yui.yahooapis.com/pure/0.5.0/grids-responsive-min.css">
51+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/pure/0.5.0/pure-min.css">
5252
<!--<![endif]-->
5353
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/styles.css">
5454
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/pygments.css">

0 commit comments

Comments
 (0)