diff options
Diffstat (limited to 'htmx')
| -rw-r--r-- | htmx/base.html | 2 | ||||
| -rw-r--r-- | htmx/error.html | 6 | ||||
| -rw-r--r-- | htmx/index.html | 6 |
3 files changed, 13 insertions, 1 deletions
diff --git a/htmx/base.html b/htmx/base.html index c02e2c6..68aae76 100644 --- a/htmx/base.html +++ b/htmx/base.html @@ -22,7 +22,7 @@ </ul> <ul> <li> - <a href="/login">Login</a> | + <a href="/login">Login</a> </li> </ul> {{end}} diff --git a/htmx/error.html b/htmx/error.html new file mode 100644 index 0000000..2e12bdf --- /dev/null +++ b/htmx/error.html @@ -0,0 +1,6 @@ +{{define "title"}}{{.}}{{end}} +{{define "main"}} + +<h1>{{.}}</h1> + +{{end}} diff --git a/htmx/index.html b/htmx/index.html new file mode 100644 index 0000000..68d9f93 --- /dev/null +++ b/htmx/index.html @@ -0,0 +1,6 @@ +{{define "title"}}Index{{end}} +{{define "main"}} + +todo + +{{end}} |
