mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-28 21:41:35 +00:00
9 lines
163 B
Rust
9 lines
163 B
Rust
use askama::Template;
|
|
|
|
#[derive(Template)]
|
|
#[template(source = "{% block foo %}{% endblock not_foo %}", ext = "html")]
|
|
struct NameMismatchEndBlock;
|
|
|
|
fn main() {
|
|
}
|