mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-28 21:41:35 +00:00
9 lines
157 B
Rust
9 lines
157 B
Rust
use askama::Template;
|
|
|
|
#[derive(Template)]
|
|
#[template(source = "{% if true %}{% elif false %}{% endif %}", ext = "html")]
|
|
struct UnknownElif;
|
|
|
|
fn main() {
|
|
}
|