diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2016-02-22 18:04:15 +0300 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2016-02-22 20:40:13 +0300 |
commit | 5f2664f13c90f083b827d8fafa6cfc01c0c4f513 (patch) | |
tree | 76fff0ba1df2d97bc6e814311ed6494724c47101 /ui-shared.c | |
parent | 75298209bf8386656b82f185e2901690ac5b671c (diff) |
ui-shared: add homepage to tabs
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'ui-shared.c')
-rw-r--r-- | ui-shared.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ui-shared.c b/ui-shared.c index 03dcc08..2c91e75 100644 --- a/ui-shared.c +++ b/ui-shared.c @@ -997,6 +997,11 @@ void cgit_print_pageheader(void) if (ctx.repo->max_stats) cgit_stats_link("stats", NULL, hc("stats"), ctx.qry.head, ctx.qry.vpath); + if (ctx.repo->homepage) { + html("<a href='"); + html_attr(ctx.repo->homepage); + html("' target='_blank'>homepage</a>"); + } html("</td><td class='form'>"); html("<form class='right' method='get' action='"); if (ctx.cfg.virtual_root) { |