html::td()
.add(html::text("git clone "))
.add(html::a(repo.get_url()).set("href", repo.get_url())));
ost << html::tr().add(
html::td()
.add(html::a("Log").set("href", branch_name + "_log.html"))
.add(html::text(" | "))
.add(html::a("Files").set("href", branch_name + "_files.html"))
.add(html::text(" | "))
.add(html::a("Refs").set("href", branch_name + "_refs.html"))
.add(html::text(" | "))
.add(html::a("README").set("href", "./"))
.add(html::text(" | "))
.add(html::a("LICENCE").set("href", "./"))
.add(html::text(" | "))
.add(dropdown));
if (!no_nav) {
ost << html::tr().add(html::td()
.add(html::a("Log").set("href", "log.html"))
.add(html::text(" | "))
.add(html::a("Files").set("href", "files.html"))
.add(html::text(" | "))
.add(html::a("Refs").set("href", "refs.html"))
.add(html::text(" | "))
.add(html::a("README").set("href", "./"))
.add(html::text(" | "))
.add(html::a("LICENCE").set("href", "./"))
.add(html::text(" | "))
.add(dropdown));
}
ost << html::table();
ost << html::hr();
}