Closed rmgrimm closed 3 years ago
This resolves an issue where the base index page would include the wrong URL for a would-be self-referencing hreflang link.
For example, today https://hydejack.com has a would-be self link as follows:
<link rel="alternate" href="https://hydejack.com/blog/hyde/2012-02-06-whats-jekyll/" hreflang="en">
After changing to include from include_cache, it would be correct:
include
include_cache
<link rel="alternate" href="https://hydejack.com/" hreflang="en">
Again, thanks for catching this.
This resolves an issue where the base index page would include the wrong URL for a would-be self-referencing hreflang link.
For example, today https://hydejack.com has a would-be self link as follows:
After changing to
include
frominclude_cache
, it would be correct: