Use proper semantic tags in baseof.html
This commit is contained in:
parent
3685f1c64f
commit
c0169434d5
2 changed files with 13 additions and 15 deletions
|
@ -2,9 +2,9 @@
|
|||
<html lang="en">
|
||||
{{- partial "head.html" . -}}
|
||||
<body>
|
||||
{{- partial "header.html" . -}}
|
||||
{{- partial "sidebar.html" . -}}
|
||||
{{- block "main" . }}{{- end }}
|
||||
{{- partial "footer.html" . -}}
|
||||
<header>{{- partial "header.html" . -}}</header>
|
||||
<aside>{{- partial "sidebar.html" . -}}</aside>
|
||||
<article>{{- block "main" . }}{{- end }}</article>
|
||||
<footer>{{- partial "footer.html" . -}}</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
<footer>
|
||||
Copyright (c) 2022. <a href="https://git.sr.ht/~redstrate/redstrate.com/tree/master/item/content/{{ .File.Path }}?view-source">View Source</a>
|
||||
Copyright (c) 2022. <a href="https://git.sr.ht/~redstrate/redstrate.com/tree/master/item/content/{{ .File.Path }}?view-source">View Source</a>
|
||||
|
||||
<div>
|
||||
<div>
|
||||
{{ with resources.Get "cc-by-nc-sa.gif" }}
|
||||
<img src="{{ .Permalink }}">
|
||||
{{ end }}
|
||||
|
@ -9,5 +8,4 @@
|
|||
{{ with resources.Get "rss-button.gif" }}
|
||||
<img src="{{ .Permalink }}">
|
||||
{{ end }}
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Reference in a new issue