jekyll-multipost icon indicating copy to clipboard operation
jekyll-multipost copied to clipboard

Generate multiple posts, each utilizing a different layout, from a single post entry.

Results 4 jekyll-multipost issues
Sort by recently updated
recently updated
newest added

Hi, I am receiving the following error from Jekyll when I customise the prettylink template using `:layout` as per your example. Code: `permalink: ":layout/:categories/:title/"` Error: `jekyll 3.8.2 | Error: The...

Does the plugin work for multiple layouts. For example, if I have _default.html_ and _default2.html_, can I make my _post.html_ layout be rendered by both _default_ and _default2_? So that...

When I run frontmatter like this: ``` --- layout: [examples, demo] permalink: ":title-:layout/" --- ``` in a file unter `folder/subfolder/test.md` I get: ``` _site/:title-demo/index.html _site/:title-examples/index.html ``` I was hoping i...