Clean up HTML&CSS

This commit is contained in:
Andrew-71 2024-03-29 14:58:24 +03:00
parent 1ba9c87184
commit a66e26477c
5 changed files with 6 additions and 11 deletions

View file

@ -1,11 +1,10 @@
{{define "header"}}
<header>
<h1>🌺 Hibiscus.txt</h1>
<p id="status">Today is <span id="today-date">a place</span></p>
<p>Today is <span id="today-date">a place</span></p>
</header>
{{end}}
{{define "base"}}
<!DOCTYPE html>
<html lang="en">
@ -23,10 +22,7 @@
{{template "main" .}}
</main>
{{template "footer" .}}
<script defer>
updateDate()
beginDateUpdater()
</script>
<script defer>updateDate();beginDateUpdater()</script>
</body>
</html>
{{end}}