aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs8
1 files changed, 8 insertions, 0 deletions
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<HttpResponse> {
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,