mirror of
https://github.com/askama-rs/askama.git
synced 2025-10-01 06:51:15 +00:00
9 lines
183 B
Rust
9 lines
183 B
Rust
use rinja::Template;
|
|
|
|
#[derive(Template)]
|
|
#[template(ext = "txt", source = r#"{% include "a_file_that_is_actually_a_folder.html" %}"#)]
|
|
struct YouCannotIncludeFolders;
|
|
|
|
fn main() {
|
|
}
|