Skip to content

Commit

Permalink
Merge pull request #59 from sunzenshen/https-mixed-content-fix
Browse files Browse the repository at this point in the history
Fix mixed content warnings from gravatar and fonts.googleapis
  • Loading branch information
dbtek committed Jan 6, 2017
2 parents 7dfc8fc + e81f065 commit 446a0e3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion _includes/default.html
Expand Up @@ -59,7 +59,7 @@
</a>
{% endif %}
<a class="navbar-brand" href="{{ site.BASE_PATH }}/">
<img src="http://www.gravatar.com/avatar/{{site.author.email_md5}}?s=35" class="img-circle" />
<img src="//www.gravatar.com/avatar/{{site.author.email_md5}}?s=35" class="img-circle" />
{{ site.title }}
</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion _includes/post.html
Expand Up @@ -92,7 +92,7 @@ <h4 class="section-title">Share Post</h4>
</section>

<section class="col-sm-6 author">
<img src="http://www.gravatar.com/avatar/{{site.author.email_md5}}" class="img-rounded author-image" />
<img src="//www.gravatar.com/avatar/{{site.author.email_md5}}" class="img-rounded author-image" />
<h4 class="section-title author-name">{{site.author.name}}</h4>
<p class="author-bio">{{site.author.bio}}</p>
</section>
Expand Down
2 changes: 1 addition & 1 deletion _includes/sidebar.html
@@ -1,7 +1,7 @@
<!-- sidebar.html -->
<header class="sidebar-header" role="banner">
<a href="{{ site.BASE_PATH }}/">
<img src="http://www.gravatar.com/avatar/{{site.author.email_md5}}?s=150" class="img-circle" />
<img src="//www.gravatar.com/avatar/{{site.author.email_md5}}?s=150" class="img-circle" />
</a>
<h3 class="title">
<a href="{{ site.BASE_PATH }}/">{{ site.title }}</a>
Expand Down
2 changes: 1 addition & 1 deletion assets/css/style.css
@@ -1,4 +1,4 @@
@import url(http://fonts.googleapis.com/css?family=Ubuntu:500&subset=latin,latin-ext);
@import url(//fonts.googleapis.com/css?family=Ubuntu:500&subset=latin,latin-ext);

body{
color: #2c3e50;
Expand Down

0 comments on commit 446a0e3

Please sign in to comment.