Fixed Gravatar URL
This commit is contained in:
parent
349673546e
commit
262b5dca2f
|
@ -19,11 +19,11 @@
|
||||||
<link rel="stylesheet" href="{{ site.url }}/assets/css/styles.css">
|
<link rel="stylesheet" href="{{ site.url }}/assets/css/styles.css">
|
||||||
|
|
||||||
{% for size in site.apple_touch_icon_sizes %}
|
{% 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 %}
|
{% endfor %}
|
||||||
|
|
||||||
{% for size in site.favicon_sizes %}
|
{% 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 %}
|
{% endfor %}
|
||||||
</head>
|
</head>
|
||||||
<body{% if page.body_class %} class="{{ page.body_class }}"{% endif %}>
|
<body{% if page.body_class %} class="{{ page.body_class }}"{% endif %}>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<div class="about-author">
|
<div class="about-author">
|
||||||
<h2>About the Author</h2>
|
<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>
|
<p>{{ site.bio|raw }}</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
Reference in a new issue