Skip to content

Commit 37b3f48

Browse files
authored
Fix insecure (non-HTTPS) links on site (#581)
There's some non-HTTPS URLs: ``` <meta property="og:url" content="http://reactjs.net/index.html" /> ... <link rel="alternate" type="application/rss+xml" title="ReactJS.NET" href="http://reactjs.net/feed.xml" /> ``` This should fix it.
1 parent cefc98c commit 37b3f48

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

site/jekyll/_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pygments: true
44
permalink: /:year/:month/:title.html
55
paginate: 5
66
paginate_path: /blog/page:num.html
7-
url: http://reactjs.net
7+
url: https://reactjs.net
88
doc-sections:
99
- id: getting-started
1010
title: Getting Started

site/jekyll/_layouts/default.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<meta property="og:title" content="{{ page.title }} | {{ site.name }}" />
1010
<meta property="og:type" content="website" />
1111
<meta property="og:url" content="{{ site.url }}{{ page.url }}" />
12-
<meta property="og:image" content="http://facebook.github.io/react/img/logo_og.png" />
12+
<meta property="og:image" content="https://reactjs.org/logo-og.png" />
1313
<meta property="og:description" content=".NET integration for ReactJS" />
1414
<meta property="fb:app_id" content="1417169611875552" />
1515

0 commit comments

Comments
 (0)