Updated wiki.tmpl to let some bugs out

1. Moved the footer to before </body>
2. Wrapped <div class="content"></div> around the actual contents of <body> (excluding the navbar and footer, just like the main tilde.club page).
3. Added a missing </div> for <div class="col">
4. Removed a couple newlines after the </html> tag.
This commit is contained in:
login000 2020-05-07 14:26:14 +10:00 committed by GitHub
parent 10516a8223
commit 2b05b8592c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 38 additions and 38 deletions

View File

@ -46,6 +46,7 @@ $highlighting-css$
$for(include-before)$
$include-before$
$endfor$
<div class="content">
$if(title)$
<header>
<h1 class="title">$$ $title$</h1>
@ -66,7 +67,7 @@ $highlighting-css$
$endif$
</header>
$endif$
<br>
<br>
<div class="grid">
<div class="row">
@ -88,14 +89,13 @@ $body$
$include-after$
$endfor$
</div>
</div>
</div>
</div>
<br>
<footer class="text-center">
<p>ECDSA fingerprint: SHA256:duamOATgnGcfRFFkotCwrAWzZtRjwxm64WAhq5tQRwE</p>
<a href="https://github.com/tildeclub/site">page source</a>
</footer>
</body>
</body>
</html>