diff --git a/routes/routes.go b/routes/routes.go index daace2f..0499a9e 100644 --- a/routes/routes.go +++ b/routes/routes.go @@ -152,6 +152,7 @@ func (d *deps) RepoIndex(w http.ResponseWriter, r *http.Request) { data["commits"] = commits data["desc"] = getDescription(path) data["servername"] = d.c.Server.Name + data["meta"] = d.c.Meta data["gomod"] = isGoModule(gr) if err := t.ExecuteTemplate(w, "repo", data); err != nil { diff --git a/static/style.css b/static/style.css index cfffb82..67b8e26 100644 --- a/static/style.css +++ b/static/style.css @@ -34,7 +34,7 @@ pre { } body { - max-width: 750px; + max-width: 1000px; padding: 0 13px; margin: 40px auto; }