render method
Renders the given page's content. The content is modified in place.
Implementation
@override
Future<void> render(Page page, List<Page> pages) async {
final root = Uri.parse(partialsRoot);
final template = _buildTemplate(page, page.content, root);
page.apply(content: template.renderString(prepareValues(page, pages)));
}