diff options
author | mms <michal@sapka.me> | 2024-05-31 22:00:55 +0200 |
---|---|---|
committer | mms <michal@sapka.me> | 2024-05-31 22:00:55 +0200 |
commit | dd7b51f0c1c3ad5e907b06621ea76c01f5e5e5ec (patch) | |
tree | 8a7ec60e8a9b76f4e56e5ece161aff322c212f30 /layouts | |
parent | 870e0655cba09cef70bfcf4f353676dd59b420d1 (diff) |
fix: tidy up old name references
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/unix-history/baseof.html | 53 |
1 files changed, 27 insertions, 26 deletions
diff --git a/layouts/unix-history/baseof.html b/layouts/unix-history/baseof.html index 7a04eff..396f391 100644 --- a/layouts/unix-history/baseof.html +++ b/layouts/unix-history/baseof.html @@ -109,35 +109,36 @@ </head> <body> - <nav> - {{ range $parent := first 1 .Ancestors}} - <a href="{{ .Permalink }}"> << Back</a> - {{ end }} - </nav> <header> + + <nav> + {{ range $parent := first 1 .Ancestors}} + <a href="{{ .Permalink }}"> < Back</a> + {{ end }} + </nav> + <hr> + <h1>{{ .Title }}</h1> -</header> - -<hr> + </header> -<article> - <aside class="wip"> - {{ $wip := resources.Get "icons/wip.gif"}} - <img src="{{$wip.Permalink}}" alt="Work in progress" width="{{ $wip.Width}}" height="{{ $wip.Height }}"> - This text is still work in progress and will be updated. - </aside> + <article> + <aside class="wip"> + {{ $wip := resources.Get "icons/wip.gif"}} + <img src="{{$wip.Permalink}}" alt="Work in progress" width="{{ $wip.Width}}" height="{{ $wip.Height }}"> + This text is still work in progress and will be updated. + </aside> - {{ block "main" . }} - {{ end }} + {{ block "main" . }} + {{ end }} -</article> - -<hr> -<footer> - Website created and operated by <a href="https://michal.sapka.me">Michał</a> - <div style="padding: 15px; text-align: center;"> - {{ partial "buttons/valid_html" . }} - </div> -</footer> -</body> + </article> + + <hr> + <footer> + Website created and operated by <a href="https://michal.sapka.me">Michał</a> + <!-- <div style="padding: 15px; text-align: center;"> --> + {{ partial "buttons/valid_html" . }} + </div> + </footer> + </body> </html> |