diff options
| author | user@node5.net <user@node5.net> | 2025-12-07 14:25:09 +0100 |
|---|---|---|
| committer | user@node5.net <user@node5.net> | 2025-12-07 14:25:09 +0100 |
| commit | b00da901a46b0710ad8bd29522e33bed2c4a1c77 (patch) | |
| tree | 364541e3d9c300d26271ab0aabfe8056663e595a /web_interface/drinks/templates/base.html | |
| parent | e0ffa5be9133ab27f1e077ec884946bd5d347554 (diff) | |
You can create drinks and they will be displayed
Diffstat (limited to 'web_interface/drinks/templates/base.html')
| -rw-r--r-- | web_interface/drinks/templates/base.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/web_interface/drinks/templates/base.html b/web_interface/drinks/templates/base.html new file mode 100644 index 0000000..8a60bab --- /dev/null +++ b/web_interface/drinks/templates/base.html @@ -0,0 +1,23 @@ +{% load static %} + +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta http-equiv="X-UA-Compatible" content="ie=edge"> + <title>Drinks machine</title> + <link rel="stylesheet" href="{% static 'style/main.css' %}"> + <link rel="stylesheet" href="{% static 'beer_css/beer.min.css' %}"> + <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🍸</text></svg>"> + {% block head %} + {% endblock %} + </head> + <body> + <main class="responsive"> + {% block content %} + {% endblock %} + </main> + </body> +</html> + |
