refactor(web/tvl/template): Don't forcefully embed title in page

This hands more layout control back to the page content instead of the
template. There are cases (currently experimenting with logo layout)
where it's visually nicer if there isn't a page title, but the rest of
the template still applies.

Change-Id: Ia3cd0c750beec5408e631760f1faeea8efec91db
This commit is contained in:
Vincent Ambo 2021-09-22 15:19:43 +03:00
parent 87c141d3d7
commit d0c0227a7b
3 changed files with 10 additions and 4 deletions

View file

@ -30,10 +30,6 @@ runCommandNoCC "index.html" {
'' + lib.optionalString (args ? extraHead) extraHead + ''
</head>
<body class="light">
<header>
<h1><a class="blog-title" href="/">${title}</a> </h1>
<hr>
</header>
'';
inherit content;