Browse Source

Merge pull request #592 from omasanori/fix-rel-canonical

Do not strip trailing slash of canonical URLs.
unreleased_contents
Brandon Mathis 13 years ago
parent
commit
90ef78edb3
  1. 2
      .themes/classic/source/_includes/head.html

2
.themes/classic/source/_includes/head.html

@ -16,7 +16,7 @@
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1">
{% 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' }}{% endif %}{% endcapture %}
<link rel="canonical" href="{{ canonical }}">
<link href="{{ root_url }}/favicon.png" rel="icon">
<link href="{{ root_url }}/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css">

Loading…
Cancel
Save