Render Page with Imbricate CLI

Imbricate CLI provides a way to render a page from your origin. You can use the the following command to render a page:

With any terminal shell, run the following command.

imbricate page render -c <collection-name> -i <page-identifier>

This will render the page with the given collection name and page identifier. The rendered page will be displayed in the terminal. If you want to save the rendered page to a file, you can use the -o flag:

With any terminal shell, run the following command.

imbricate page render -c <collection-name> -i <page-identifier> -o <output-file>

Using a template

You can also render a page using a template. You can use the -e flag to specify the template to use:

With any terminal shell, run the following command.

imbricate page render -c <collection-name> -i <page-identifier> -e <template-name>

The template could includes some placeholders to let imbricate CLI to replace them with the page content. You could visit the Imbricate CLI Render Template page to learn more about how to create a template for your page.