@@ 1058,12 1058,12 @@ static void print_header(void)
void cgit_print_pageheader(void)
{
if (!ctx.env.authenticated || !ctx.cfg.noheader) {
- html("<header>\n");
+ html("<header>\n");
print_top_header();
- html("</header>\n");
+ html("</header>\n");
};
html("<main>");
- html("<header>\n");
+ html("<header>\n");
print_header();
if (ctx.env.authenticated && ctx.repo) {
@@ 1093,53 1093,53 @@ void cgit_print_pageheader(void)
html("<nav>\n");
html("<ul>");
if (ctx.repo->readme.nr) {
- html("<li>");
+ html("<li>");
reporevlink("about", "about", NULL,
hc("about"), ctx.qry.head, NULL,
NULL);
- html("</li>");
+ html("</li>");
}
- html("<li>");
+ html("<li>");
cgit_summary_link("summary", NULL, hc("summary"),
ctx.qry.head);
- html("</li>");
- html("<li>");
+ html("</li>");
+ html("<li>");
cgit_refs_link("refs", NULL, hc("refs"), ctx.qry.head,
ctx.qry.oid, NULL);
- html("</li>");
- html("<li>");
+ html("</li>");
+ html("<li>");
cgit_log_link("log", NULL, hc("log"), ctx.qry.head,
NULL, ctx.qry.vpath, 0, NULL, NULL,
ctx.qry.showmsg, ctx.qry.follow);
- html("</li>");
- html("<li>");
+ html("</li>");
+ html("<li>");
if (ctx.qry.page && !strcmp(ctx.qry.page, "blame"))
cgit_blame_link("blame", NULL, hc("blame"), ctx.qry.head,
ctx.qry.oid, ctx.qry.vpath);
else
cgit_tree_link("tree", NULL, hc("tree"), ctx.qry.head,
ctx.qry.oid, ctx.qry.vpath);
- html("</li>");
- html("<li>");
+ html("</li>");
+ html("<li>");
cgit_commit_link("commit", NULL, hc("commit"),
ctx.qry.head, ctx.qry.oid, ctx.qry.vpath);
- html("</li>");
- html("<li>");
+ html("</li>");
+ html("<li>");
cgit_diff_link("diff", NULL, hc("diff"), ctx.qry.head,
ctx.qry.oid, ctx.qry.oid2, ctx.qry.vpath);
- html("</li>");
+ html("</li>");
if (ctx.repo->max_stats) {
- html("<li>");
+ html("<li>");
cgit_stats_link("stats", NULL, hc("stats"),
ctx.qry.head, ctx.qry.vpath);
- html("</li>");
+ html("</li>");
}
if (ctx.repo->homepage) {
- html("<li>");
+ html("<li>");
html("<a href='");
html_attr(ctx.repo->homepage);
html("'>homepage</a>");
- html("</li>");
+ html("</li>");
}
html("</ul>");
html("</nav>\n");
@@ 1159,11 1159,11 @@ void cgit_print_pageheader(void)
html("</form>");
html("</nav>\n");
html("<nav>\n");
- html("<ul>")
- html("<li>")
+ html("<ul>");
+ html("<li>");
site_link(NULL, "index", NULL, hc("repolist"), NULL, NULL, 0, 1);
- html("</li>")
- html("</ul>")
+ html("</li>");
+ html("</ul>");
html("</nav>\n");
free(currenturl);
}
@@ 1181,7 1181,7 @@ void cgit_print_pageheader(void)
}
html("</nav>");
}
- html("</header>\n");
+ html("</header>\n");
html("<article>");
}