diff options
author | Samuel Johnson <[email protected]> | 2025-05-04 00:25:10 -0400 |
---|---|---|
committer | Samuel Johnson <[email protected]> | 2025-05-04 00:25:10 -0400 |
commit | 3abe2c3fbe95ab0a38045c359b808fadac6220ea (patch) | |
tree | 6cd22a874eb06fb76c588c8431ed73022b81086f /ui/html/base.tmpl.html | |
parent | 005a588111e6d27b012bc923c39d97a6129f39f2 (diff) |
Create music player GUI
Diffstat (limited to 'ui/html/base.tmpl.html')
-rw-r--r-- | ui/html/base.tmpl.html | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/ui/html/base.tmpl.html b/ui/html/base.tmpl.html index f3d618d..0bcf405 100644 --- a/ui/html/base.tmpl.html +++ b/ui/html/base.tmpl.html @@ -4,16 +4,20 @@ <head> <meta charset="UTF-8"> <title>{{template "title" .}} - Paterissa</title> - <link rel="stylesheet" href="https://unpkg.com/7.css"> + <link rel="stylesheet" href="/static/get?file=app.css"> </head> <body> - <header> - <h1>Paterissa</h1> - </header> - <hr> - <main> - {{template "main" .}} - </main> + <img src="/static/get?file=images/bg.png" id="bg-image"> + <div class="pane"> + <header> + <h1>Paterissa</h1> + </header> + <hr> + <main class="inner_pane"> + {{template "main" .}} + </main> + </div> + {{template "music_player" .}} </body> </html> {{end}} |