Fixed Gravatar URL

This commit is contained in:
Oliver Davies 2015-06-18 08:57:50 +01:00
parent 349673546e
commit 262b5dca2f
2 changed files with 3 additions and 3 deletions

View file

@ -19,11 +19,11 @@
<link rel="stylesheet" href="{{ site.url }}/assets/css/styles.css">
{% for size in site.apple_touch_icon_sizes %}
<link rel="apple-touch-icon" href="{{ site.gravatar_url }}?s={{ size }}" sizes="{{ size }}x{{ size }}">
<link rel="apple-touch-icon" href="{{ site.gravatar.url }}?s={{ size }}" sizes="{{ size }}x{{ size }}">
{% endfor %}
{% for size in site.favicon_sizes %}
<link rel="icon" href="{{ site.gravatar_url }}?s={{ size }}" sizes="{{ size }}x{{ size }}">
<link rel="icon" href="{{ site.gravatar.url }}?s={{ size }}" sizes="{{ size }}x{{ size }}">
{% endfor %}
</head>
<body{% if page.body_class %} class="{{ page.body_class }}"{% endif %}>

View file

@ -1,5 +1,5 @@
<div class="about-author">
<h2>About the Author</h2>
<img src="{{ site.gravatar_url }}?s=50" alt="Picture of Oliver" class="img-circle">
<img src="{{ site.gravatar.url }}?s=50" alt="Picture of Oliver" class="img-circle">
<p>{{ site.bio|raw }}</p>
</div>