Remove some more {{ site.url }} references
This commit is contained in:
parent
f4541e32ef
commit
bca23d7be3
1 changed files with 7 additions and 7 deletions
|
@ -25,7 +25,7 @@
|
||||||
|
|
||||||
{% capture canonical %}{{ site.url }}{% if site.permalink contains '.html' %}{{ page.url }}{% else %}{{ page.url | remove:'index.html' | strip_slash }}{% endif %}{% endcapture %}
|
{% capture canonical %}{{ site.url }}{% if site.permalink contains '.html' %}{{ page.url }}{% else %}{{ page.url | remove:'index.html' | strip_slash }}{% endif %}{% endcapture %}
|
||||||
<link rel="canonical" href="{{ canonical }}">
|
<link rel="canonical" href="{{ canonical }}">
|
||||||
<link href="{{ site.url }}/feed.xml" type="application/atom+xml" rel="alternate" title="{{ site.title }} Feed">
|
<link href="/feed.xml" type="application/atom+xml" rel="alternate" title="{{ site.title }} Feed">
|
||||||
{% if site.owner.google_plus %}<link rel="author" href="{{ site.owner.google_plus }}?rel=author">{% endif %}
|
{% if site.owner.google_plus %}<link rel="author" href="{{ site.owner.google_plus }}?rel=author">{% endif %}
|
||||||
|
|
||||||
<!-- http://t.co/dKP3o1e -->
|
<!-- http://t.co/dKP3o1e -->
|
||||||
|
@ -45,17 +45,17 @@
|
||||||
|
|
||||||
<!-- Icons -->
|
<!-- Icons -->
|
||||||
<!-- 16x16 -->
|
<!-- 16x16 -->
|
||||||
<link rel="shortcut icon" href="{{ site.url }}/favicon.ico">
|
<link rel="shortcut icon" href="/favicon.ico">
|
||||||
<!-- 32x32 -->
|
<!-- 32x32 -->
|
||||||
<link rel="shortcut icon" href="{{ site.url }}/favicon.png">
|
<link rel="shortcut icon" href="/favicon.png">
|
||||||
<!-- 57x57 (precomposed) for iPhone 3GS, pre-2011 iPod Touch and older Android devices -->
|
<!-- 57x57 (precomposed) for iPhone 3GS, pre-2011 iPod Touch and older Android devices -->
|
||||||
<link rel="apple-touch-icon-precomposed" href="{{ site.url }}{{ 'icons/apple-touch-icon-precomposed.png' | asset_path }}">
|
<link rel="apple-touch-icon-precomposed" href="{{ 'icons/apple-touch-icon-precomposed.png' | asset_path }}">
|
||||||
<!-- 72x72 (precomposed) for 1st generation iPad, iPad 2 and iPad mini -->
|
<!-- 72x72 (precomposed) for 1st generation iPad, iPad 2 and iPad mini -->
|
||||||
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="{{ site.url }}{{ 'icons/apple-touch-icon-72x72-precomposed.png' | asset_path }}">
|
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="{{ 'icons/apple-touch-icon-72x72-precomposed.png' | asset_path }}">
|
||||||
<!-- 114x114 (precomposed) for iPhone 4, 4S, 5 and post-2011 iPod Touch -->
|
<!-- 114x114 (precomposed) for iPhone 4, 4S, 5 and post-2011 iPod Touch -->
|
||||||
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="{{ site.url }}{{ 'icons/apple-touch-icon-114x114-precomposed.png' | asset_path }}">
|
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="{{ 'icons/apple-touch-icon-114x114-precomposed.png' | asset_path }}">
|
||||||
<!-- 144x144 (precomposed) for iPad 3rd and 4th generation -->
|
<!-- 144x144 (precomposed) for iPad 3rd and 4th generation -->
|
||||||
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ site.url }}{{ 'icons/apple-touch-icon-144x144-precomposed.png' | asset_path }}">
|
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ 'icons/apple-touch-icon-144x144-precomposed.png' | asset_path }}">
|
||||||
|
|
||||||
{% if page.image.background or site.background %}
|
{% if page.image.background or site.background %}
|
||||||
{% capture background %}{% if page.image.background %}{{ page.image.background }}{% else %}{{ site.background }}{% endif %}{% endcapture %}
|
{% capture background %}{% if page.image.background %}{{ page.image.background }}{% else %}{{ site.background }}{% endif %}{% endcapture %}
|
||||||
|
|
Loading…
Reference in a new issue