zola/components/templates/src/global_fns/mod.rs

16 lines
337 B
Rust
Raw Normal View History

2018-10-29 19:13:09 +00:00
#[macro_use]
mod macros;
2018-02-02 20:35:04 +00:00
2021-05-11 16:05:00 +00:00
mod content;
2021-05-13 20:20:47 +00:00
mod files;
mod helpers;
2021-05-11 16:28:01 +00:00
mod i18n;
2021-05-11 16:05:00 +00:00
mod images;
2018-10-29 19:13:09 +00:00
mod load_data;
2021-05-11 16:05:00 +00:00
pub use self::content::{GetPage, GetSection, GetTaxonomy, GetTaxonomyUrl};
2021-05-13 20:20:47 +00:00
pub use self::files::{GetFileHash, GetUrl};
2021-05-11 16:28:01 +00:00
pub use self::i18n::Trans;
2021-05-12 19:07:18 +00:00
pub use self::images::{GetImageMetadata, ResizeImage};
pub use self::load_data::LoadData;