Change the default font + other little things

This commit is contained in:
Greg Burri 2020-05-12 23:14:42 +02:00
parent dcf7523ccf
commit 3ebbe8172b
16 changed files with 48 additions and 28 deletions

View file

@ -45,4 +45,8 @@ impl Connection {
|row| Ok(dbg!("test"))
)
}
pub fn get_all_recipes() {
}
}

View file

@ -27,7 +27,7 @@ pub struct Request {
fn main_page(query: Query<Request>) -> HttpResponse {
let main_template = MainTemplate { test: &"*** test 2 ***" };
let main_template = MainTemplate { test: &"*** test ***" };
let s = main_template.render().unwrap();
HttpResponse::Ok().content_type("text/html").body(s)