43 lines
No EOL
1 KiB
Text
43 lines
No EOL
1 KiB
Text
<!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> |