Skip to content
Snippets Groups Projects
Commit 3b226e40 authored by Jacek Lebioda's avatar Jacek Lebioda
Browse files

Merge branch '30-add-redirect-layout-for-permalinks' into 'develop'

Correction

See merge request !10
parents 8218abf9 58494aef
No related branches found
No related tags found
No related merge requests found
...@@ -4,8 +4,8 @@ ...@@ -4,8 +4,8 @@
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="canonical" href="{{ redirect_to }}"> <link rel="canonical" href="{{ page.redirect_to }}">
<meta http-equiv="refresh" content="0; url={{ redirect_to }}"> <meta http-equiv="refresh" content="0; url={{ page.redirect_to }}">
<link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}"> <link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
<link rel="shortcut icon" href="{{ "/assets/favicon.png" | relative_url }}" /> <link rel="shortcut icon" href="{{ "/assets/favicon.png" | relative_url }}" />
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
<main id="site-content" aria-label="Content"> <main id="site-content" aria-label="Content">
<div> <div>
<h1>Redirection to {{ redirect_to }}</h1> <h1>Redirection to {{ page.redirect_to }}</h1>
<a href="{{ redirect_to }}">Click here if you are not redirected...</a> <a href="{{ page.redirect_to }}">Click here if you are not redirected...</a>
</div> </div>
{{ content }} {{ content }}
...@@ -28,6 +28,6 @@ ...@@ -28,6 +28,6 @@
{%- include footer.html -%} {%- include footer.html -%}
<script>window.location="{{ redirect_to }}";</script> <script>window.location="{{ page.redirect_to }}";</script>
</body> </body>
</html> </html>
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
Gem::Specification.new do |spec| Gem::Specification.new do |spec|
spec.name = "jekyll-elixir-theme" spec.name = "jekyll-elixir-theme"
spec.version = "0.9.5" spec.version = "0.9.6"
spec.authors = ["jacek.lebioda"] spec.authors = ["jacek.lebioda"]
spec.email = ["jacek.lebioda@uni.lu"] spec.email = ["jacek.lebioda@uni.lu"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment