Skip to content
Snippets Groups Projects

Correction

Merged Jacek Lebioda requested to merge 30-add-redirect-layout-for-permalinks into develop
2 files
+ 6
6
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 5
5
@@ -4,8 +4,8 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="canonical" href="{{ redirect_to }}">
<meta http-equiv="refresh" content="0; url={{ redirect_to }}">
<link rel="canonical" href="{{ page.redirect_to }}">
<meta http-equiv="refresh" content="0; url={{ page.redirect_to }}">
<link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
<link rel="shortcut icon" href="{{ "/assets/favicon.png" | relative_url }}" />
@@ -19,8 +19,8 @@
<main id="site-content" aria-label="Content">
<div>
<h1>Redirection to {{ redirect_to }}</h1>
<a href="{{ redirect_to }}">Click here if you are not redirected...</a>
<h1>Redirection to {{ page.redirect_to }}</h1>
<a href="{{ page.redirect_to }}">Click here if you are not redirected...</a>
</div>
{{ content }}
@@ -28,6 +28,6 @@
{%- include footer.html -%}
<script>window.location="{{ redirect_to }}";</script>
<script>window.location="{{ page.redirect_to }}";</script>
</body>
</html>
Loading