pub async fn get_page_for_template<M: MutableStore, T: TranslationsManager>(
    __arg0: GetPageProps<'_, M, T>,
    template: &Template<SsrNode>
) -> Result<PageData, ServerError>
Expand description

Internal logic behind get_page. The only differences are that this takes a full template rather than just a template name, which can avoid an unnecessary lookup if you already know the template in full (e.g. initial load server-side routing). Because this handles templates with potentially revalidation and incremental generation, it uses both mutable and immutable stores.