title | layout |
---|---|
My post |
post |
Some content here
title | layout |
---|---|
My post |
post |
Some content here
<html doctype="html"> | |
<head> | |
<title>{{page.title}}</title> | |
</head> | |
<body> | |
<h1>{{page.title}}</h1> | |
{{content}} | |
<footer>{{footer}}</footer> | |
</body> | |
</html> |
{% capture footer %} | |
This post is copyright 2016 Sebastien Lambla | |
{% endcapture %} | |
{% include _master.html %} |