askama/testing/tests/ui/transclude-missing.rs
2024-07-29 15:48:18 +02:00

12 lines
232 B
Rust

use rinja::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() {}