askama/testing/tests/ui/transclude-missing.rs
2025-03-11 19:31:06 +01:00

12 lines
233 B
Rust

use askama::Template;
#[derive(Template)]
#[template(path = "transclude-there.html")]
struct Indirect;
#[derive(Template)]
#[template(source = r#"{% include "transclude-there.html" %}"#, ext = "html")]
struct Direct;
fn main() {}