diff options
author | Matt Arnold | 2025-04-10 19:24:21 -0400 |
---|---|---|
committer | Matt Arnold | 2025-04-10 19:24:21 -0400 |
commit | f34df498c517a462aad98f2ab528a6d15974e46c (patch) | |
tree | e3b2f7f342921b23f6f4eada84e55ca82e7d8d70 /templates/base.html | |
parent | 1e470374226fd72a29daededfab6510289346316 (diff) |
The great ui commit css crimes
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/templates/base.html b/templates/base.html index 48b4d9c..d014cd9 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,11 +1,14 @@ <!DOCTYPE html> <html lang="en"> + <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <title>Blog</title> + <title>VibesHome</title> <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"> + </head> + <body> <header> <h1><a href="{{ url_for('index') }}">My Blog</a></h1> @@ -14,4 +17,5 @@ {% block content %}{% endblock %} </main> </body> + </html> \ No newline at end of file |