diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2019-03-03 10:41:22 +0100 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2019-03-03 10:41:22 +0100 |
commit | ecc0ff7bf3f05ce11f59ce25f5c262905d594b9b (patch) | |
tree | 0b24bca7d6c13876a47d85264ceb71fb137e0472 /src | |
parent | 84a0b65e73c1cbaf032b533de2236b0c09eb310b (diff) | |
download | ramaskrik-social-ecc0ff7bf3f05ce11f59ce25f5c262905d594b9b.tar.gz ramaskrik-social-ecc0ff7bf3f05ce11f59ce25f5c262905d594b9b.tar.bz2 ramaskrik-social-ecc0ff7bf3f05ce11f59ce25f5c262905d594b9b.zip |
Enable askama rocket integration.
Let's us return templates directly, and have rocket render it for us.
Diffstat (limited to 'src')
-rw-r--r-- | src/main.rs | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/main.rs b/src/main.rs index 307bbc4..1ee6011 100644 --- a/src/main.rs +++ b/src/main.rs @@ -22,10 +22,7 @@ use rocket::{ get, http::RawStr, routes, - response::{ - NamedFile, - content::Html, - }, + response::NamedFile, }; use std::path::PathBuf; @@ -36,9 +33,8 @@ struct IndexTemplate<'a> { } #[get("/")] -fn index<'a>() -> Html<String> { - let t = IndexTemplate { year: "2019" }; - Html(t.render().unwrap()) +fn index<'a>() -> IndexTemplate<'static> { + IndexTemplate { year: "2019" } } #[get("/<file>", rank = 99)] |