about summary refs log tree commit diff
path: root/src/main.rs
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2018-05-22T17·31+0200
committerVincent Ambo <github@tazj.in>2018-05-22T18·44+0200
commit2bbcced032937240ac6fb3f1cfe5136d421b3bea (patch)
tree36d5dbe46b483b19eb7401b3fa299dd6133f98cb /src/main.rs
parent69583b1236fd329cdc223f2d2a52ff313269d1d1 (diff)
refactor(templates): Move post editing template to Askama
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 3c533515bfb0..e25c3bef1fb8 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -140,7 +140,6 @@ fn start_renderer() -> Addr<Syn, Renderer> {
     // location-dependent.
     // Drawback is that template changes require recompilation ...
     tera.add_raw_templates(vec![
-        ("post.html", include_str!("../templates/post.html")),
         ("search.html", include_str!("../templates/search.html")),
     ]).expect("Could not compile templates");