Liquid layout (include and capture)



examples/liquid/liquid-layout/out.txt
title in header: Liquid
value in header: some value for the header


title in page template: Liquid
name in page template: Foo Bar


value in footer: some value for the footer

examples/liquid/liquid-layout/src/main.rs
use std::fs::File;
use std::io::Read;

pub type Partials = liquid::partials::EagerCompiler<liquid::partials::InMemorySource>;

fn main() {
    let mut partials = Partials::empty();
    let filename ="templates/layout.txt";
    partials.add(filename, read_file(filename));

    let template = liquid::ParserBuilder::with_stdlib()
        .partials(partials)
        .build()
        .unwrap()
        .parse_file("templates/page.txt")
        .unwrap();

    let globals = liquid::object!({
        "title": "Liquid",
        "name": "Foo Bar",
        "header_value": "some value for the header",
        "footer_value": "some value for the footer",
    });
    let output = template.render(&globals).unwrap();
    println!("{}", output);
}


fn read_file(template_file: &str) -> String {
    let mut template = String::new();
    match File::open(template_file) {
        Ok(mut file) => {
            file.read_to_string(&mut template).unwrap();
        },
        Err(error) => {
            println!("Error opening file {}: {}", template_file, error);
        },
    }
    template
}

examples/liquid/liquid-layout/templates/layout.txt
title in header: {{title}}
value in header: {{header_value}}

{{content}}

value in footer: {{footer_value}}

examples/liquid/liquid-layout/templates/page.txt
{% capture content %}
title in page template: {{title}}
name in page template: {{name}}
{% endcapture %}

{% include 'templates/layout.txt' %}