mirror of
https://github.com/getzola/zola
synced 2024-12-14 22:32:29 +00:00
7e496878e5
Parse _index.md files as sections and render them
15 lines
203 B
Rust
15 lines
203 B
Rust
use tera;
|
|
use toml;
|
|
|
|
error_chain! {
|
|
errors {}
|
|
|
|
links {
|
|
Tera(tera::Error, tera::ErrorKind);
|
|
}
|
|
|
|
foreign_links {
|
|
Io(::std::io::Error);
|
|
Toml(toml::de::Error);
|
|
}
|
|
}
|