Introduce migrations folder + improve README.md + add custom CDN for Material Icons

This commit is contained in:
Yusur 2022-11-10 16:37:30 +01:00
parent b09d32d5e8
commit e449e06b5d
5 changed files with 44 additions and 4 deletions

View file

@ -7,8 +7,11 @@
{% block meta %}{% endblock %}
<link rel="stylesheet" href="/static/style.css">
<!-- material icons -->
<link rel="stylesheet" href="https://cdn.sakuragasaki46.local/common/material-icons.css">
{% if material_icons_url %}
<link rel="stylesheet" href="{{ material_icons_url }}">
{% else %}
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
{% endif %}
{% block json_info %}{% endblock %}
</head>
<body{% if request.cookies.get('dark') == '1' %} class="dark"{% endif %}>