My post.json:
{
"partials" : { "content":"sidebar" }
}
My sidebar plate:
<div class="sidebar">
MEHHHHH
</div>
If I have a simple post named test.md, I get the following after running blacksmith:
<html>
<head>
<title>Simple Layout</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div id="content">
<div class="sidebar">
MEHHHHH
</div>
</div>
</body>
</html>
My understanding from the documentation is that each partial is appended to the markdown processed content.
My post.json:
My sidebar plate:
If I have a simple post named test.md, I get the following after running blacksmith:
My understanding from the documentation is that each partial is appended to the markdown processed content.