Created
July 15, 2014 16:09
-
-
Save sskylar/3e006ceeb2cf70937b14 to your computer and use it in GitHub Desktop.
Redirect page/post in Siteleaf, set destination URL in a meta field called "redirect"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
{% if meta.redirect %} | |
<meta http-equiv="refresh" content="0;url={{meta.redirect}}"> | |
{% endif %} | |
</head> | |
<body> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment