I've to define a post like as shown which is derived from mylayout.html
:
---
layout: mylayout
title: "My Post"
varA: default
---
This post is bla bla bla ...
How can i have a layout that makes use of varA
in mylayout.html
?. I wish to achieve mylayout.html
as something like following:
---
layout:default
---
<H1>This is {{post.varA}}</H1>
{{content}}