From baf496acf0640fecdc01864989f2142a9757ba14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milan=20P=C3=A4ssler?= Date: Thu, 12 Dec 2019 03:16:40 +0100 Subject: initial styling --- src/main.rs | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index d516d66..44588b2 100644 --- a/src/main.rs +++ b/src/main.rs @@ -37,7 +37,11 @@ impl Repository { #[derive(Template)] #[template(path = "repo.html")] struct Repo<'a> { + project_owner: &'a str, + project_summary: &'a str, project_name: &'a str, + project_logo: &'a str, + project_logo_alt_text: &'a str, first_commit: &'a str, num_commits: usize, num_contributors: usize, @@ -48,7 +52,11 @@ fn repo(req: HttpRequest, path: web::Path<(String)>) -> Result { dbg!(req); let repo = Repo { + project_owner: "spacekookie", + project_summary: "A lightweight web frontend for git repositories", project_name: "webgit", + project_logo: "rust.png", + project_logo_alt_text: "Rust logo", first_commit: "f6ca929", num_commits: 123, num_contributors: 3, -- cgit v1.2.3