minimum viable product
This commit is contained in:
22
web/src/templates/base.html
Normal file
22
web/src/templates/base.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<style>
|
||||
@import url("https://styles.alv.cx/colors/gruvbox.css");
|
||||
@import url("https://styles.alv.cx/base.css");
|
||||
@import url("https://styles.alv.cx/modules/darkmode.css");
|
||||
|
||||
.messagetypeinfo { background-color: var(--blue); }
|
||||
.messagetypeerror { background-color: var(--red); }
|
||||
.messagetypewarning { background-color: var(--yellow); }
|
||||
|
||||
#message { padding: 1em; }
|
||||
</style>
|
||||
<title>{% block title %}{% endblock %}</title>
|
||||
</head>
|
||||
<body>
|
||||
<p class="messagetype{{message['type']}}"id="message">{{message['text']}}</p>
|
||||
{% block body %}
|
||||
{% endblock %}
|
||||
<p> built with ❤ by <a href="https://alv.cx">alv</a></p>
|
||||
</body>
|
||||
|
Reference in New Issue
Block a user