brunch / brunch.github.io

The website
https://brunch.io
MIT License
114 stars 99 forks source link

A Quick Demo section on index page is blank #294

Closed senocular closed 5 years ago

senocular commented 5 years ago

"A Quick Demo" section - which should show a video - is empty because it tries to load the video through http instead of https

Mixed Content: The page at 'https://brunch.io/' was loaded over HTTPS, but requested an insecure resource 'http://player.vimeo.com/video/75702540'. This request has been blocked; the content must be served over HTTPS.

in brunch.github.io/app/assets/index.jade

<div class="defer-iframe" data-src="http://player.vimeo.com/video/75702540" data-style="width: 100%; height: 388px"></div>

should be

<div class="defer-iframe" data-src="https://player.vimeo.com/video/75702540" data-style="width: 100%; height: 388px"></div>