75 lines
2.4 KiB
Rust
75 lines
2.4 KiB
Rust
#[macro_use]
|
|
extern crate lazy_static;
|
|
#[macro_use]
|
|
extern crate tera;
|
|
extern crate base64;
|
|
extern crate csv;
|
|
extern crate pulldown_cmark;
|
|
extern crate reqwest;
|
|
extern crate url;
|
|
|
|
#[cfg(test)]
|
|
#[macro_use]
|
|
extern crate serde_json;
|
|
#[cfg(not(test))]
|
|
extern crate serde_json;
|
|
|
|
extern crate config;
|
|
extern crate errors;
|
|
extern crate imageproc;
|
|
extern crate library;
|
|
extern crate utils;
|
|
|
|
pub mod filters;
|
|
pub mod global_fns;
|
|
|
|
use tera::{Context, Tera};
|
|
|
|
use errors::{Error, Result};
|
|
|
|
lazy_static! {
|
|
pub static ref ZOLA_TERA: Tera = {
|
|
let mut tera = Tera::default();
|
|
tera.add_raw_templates(vec![
|
|
("__zola_builtins/404.html", include_str!("builtins/404.html")),
|
|
("__zola_builtins/rss.xml", include_str!("builtins/rss.xml")),
|
|
("__zola_builtins/sitemap.xml", include_str!("builtins/sitemap.xml")),
|
|
("__zola_builtins/robots.txt", include_str!("builtins/robots.txt")),
|
|
(
|
|
"__zola_builtins/split_sitemap_index.xml",
|
|
include_str!("builtins/split_sitemap_index.xml"),
|
|
),
|
|
("__zola_builtins/anchor-link.html", include_str!("builtins/anchor-link.html")),
|
|
(
|
|
"__zola_builtins/shortcodes/youtube.html",
|
|
include_str!("builtins/shortcodes/youtube.html"),
|
|
),
|
|
(
|
|
"__zola_builtins/shortcodes/vimeo.html",
|
|
include_str!("builtins/shortcodes/vimeo.html"),
|
|
),
|
|
("__zola_builtins/shortcodes/gist.html", include_str!("builtins/shortcodes/gist.html")),
|
|
(
|
|
"__zola_builtins/shortcodes/streamable.html",
|
|
include_str!("builtins/shortcodes/streamable.html"),
|
|
),
|
|
("internal/alias.html", include_str!("builtins/internal/alias.html")),
|
|
])
|
|
.unwrap();
|
|
tera.register_filter("markdown", filters::markdown);
|
|
tera.register_filter("base64_encode", filters::base64_encode);
|
|
tera.register_filter("base64_decode", filters::base64_decode);
|
|
tera
|
|
};
|
|
}
|
|
|
|
/// Renders the `internal/alias.html` template that will redirect
|
|
/// via refresh to the url given
|
|
pub fn render_redirect_template(url: &str, tera: &Tera) -> Result<String> {
|
|
let mut context = Context::new();
|
|
context.insert("url", &url);
|
|
|
|
tera.render("internal/alias.html", context)
|
|
.map_err(|e| Error::chain(format!("Failed to render alias for '{}'", url), e))
|
|
}
|