mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-28 21:41:35 +00:00
19 lines
282 B
Rust
19 lines
282 B
Rust
use askama::Template;
|
|
|
|
#[derive(Template)]
|
|
#[template(
|
|
source = r#"{%- extends "whatever.html" %}"#,
|
|
ext = "html"
|
|
)]
|
|
struct ExtendsPre;
|
|
|
|
#[derive(Template)]
|
|
#[template(
|
|
source = r#"{% extends "whatever.html" -%}"#,
|
|
ext = "html"
|
|
)]
|
|
struct ExtendsPost;
|
|
|
|
fn main() {
|
|
}
|