continued
implemented HTMX implemented ORM (sequelize)
This commit is contained in:
parent
2a9bd4e81b
commit
d756a192e4
71 changed files with 3822 additions and 694 deletions
43
views/master.njk
Normal file
43
views/master.njk
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
|
||||
<head>
|
||||
<title>Account Manager</title>
|
||||
{% include "./components/meta.njk" %}
|
||||
<style>
|
||||
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
|
||||
if (localStorage.getItem('color-theme') != undefined) {
|
||||
document.documentElement.classList.add(
|
||||
localStorage.getItem('color-theme')
|
||||
);
|
||||
console.log(localStorage.getItem('color-theme'));
|
||||
} else {
|
||||
document.documentElement.classList.add('theme-default');
|
||||
console.log(localStorage.getItem('theme-default'));
|
||||
}
|
||||
|
||||
tailwind.config = {
|
||||
theme: {
|
||||
fontFamily: {
|
||||
'sans': [
|
||||
'Poppins',
|
||||
'Noto Sans'
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
{% block content %}{% endblock %}
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue