Skip to content

Commit 97d9bb9

Browse files
authored
Merge pull request #207 from skade/https-headers
Move canonical links from http to https
2 parents 4a6a52c + 5bdf031 commit 97d9bb9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

_config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ title: The Rust Programming Language Blog
33
description: >
44
Words from the Rust team
55
baseurl: ""
6-
url: "http://blog.rust-lang.org"
6+
url: "https://blog.rust-lang.org"
77
logo: "https://www.rust-lang.org/logos/rust-logo-64x64-blk.png"
88
twitter_username: rustlang
9-
github_username: rust-lang
9+
github_username: rust-lang
1010

1111
# Build settings
1212
highlighter: rouge
1313

14-
root: http://blog.rust-lang.org
14+
root: https://blog.rust-lang.org

_includes/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div class="footer-links"><a href="http://rust-lang.org/">More about Rust</a> &mdash; <a href="http://doc.rust-lang.org/book/index.html">Jump straight in</a></div>
1+
<div class="footer-links"><a href="https://www.rust-lang.org/">More about Rust</a> &mdash; <a href="https://doc.rust-lang.org/book/index.html">Jump straight in</a></div>
22

33
<footer class="site-footer">
44

_includes/head.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<title>{% if page.title %}{{ page.title }} - {{ site.title }}{% else %}{{ site.title }}{% endif %}</title>
77
<meta name="description" content="{{ site.description }}">
8-
<link rel="alternate" type="application/rss+xml" title="The Rust Programming Language Blog" href="http://blog.rust-lang.org/feed.xml" />
8+
<link rel="alternate" type="application/rss+xml" title="The Rust Programming Language Blog" href="https://blog.rust-lang.org/feed.xml" />
99
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}">
1010
<link rel="stylesheet" href="{{ "/css/center-img.css" | prepend: site.baseurl }}">
1111
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">

0 commit comments

Comments
 (0)