diff options
Diffstat (limited to '174bg/database/volumes')
| -rw-r--r-- | 174bg/database/volumes/pocketbase/pb_hooks/views/_layout.html | 11 | ||||
| -rw-r--r-- | 174bg/database/volumes/pocketbase/pb_hooks/views/stats.html | 12 |
2 files changed, 14 insertions, 9 deletions
diff --git a/174bg/database/volumes/pocketbase/pb_hooks/views/_layout.html b/174bg/database/volumes/pocketbase/pb_hooks/views/_layout.html index 4771057..54fc44c 100644 --- a/174bg/database/volumes/pocketbase/pb_hooks/views/_layout.html +++ b/174bg/database/volumes/pocketbase/pb_hooks/views/_layout.html @@ -1,11 +1,14 @@ <!DOCTYPE html> <html lang="en"> <head> - <title>{{block "title" .}}Default app title{{end}}</title> + <style> + body { + margin: 0; + padding: 0; + } + </style> </head> <body> - {{block "body" .}} - Default app body... - {{end}} + {{block "body" .}}{{end}} </body> </html>
\ No newline at end of file diff --git a/174bg/database/volumes/pocketbase/pb_hooks/views/stats.html b/174bg/database/volumes/pocketbase/pb_hooks/views/stats.html index b61a1ba..8844336 100644 --- a/174bg/database/volumes/pocketbase/pb_hooks/views/stats.html +++ b/174bg/database/volumes/pocketbase/pb_hooks/views/stats.html @@ -1,9 +1,11 @@ -{{define "title"}} - stats -{{end}} - {{define "body"}} - <p id="app"></p> + <style> + div#app { + font-family: monospace; + } + </style> + + <div id="app"></div> <script> window.addEventListener("load", () => { |
