Created
June 4, 2017 19:26
-
-
Save lukas-h/ab8e997dbaa0e13b9c884d4570d9d7c7 to your computer and use it in GitHub Desktop.
AMP default layout jekyll
This file contains hidden or 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
--- | |
layout: compress | |
--- | |
<!doctype html> | |
<html ⚡ lang="en"> | |
<head> | |
{% include head.html %} | |
</head> | |
<body> | |
{% include header.html %} | |
<div class="container row content"> | |
<main role="main"> | |
{% assign pagecontent = content %} | |
{% for replacement in site.replacements %} | |
{% assign pagecontent = pagecontent | replace: replacement[0], replacement[1] %} | |
{% endfor %} | |
{{ pagecontent }} | |
</main> | |
</div> | |
{% include footer.html %} | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment