1
0
Fork 0
mirror of https://github.com/YunoHost/apps.git synced 2024-09-03 20:06:07 +02:00
apps/tools/app_generator/templates/base.html
Alexandre Aubin 826639058e
appgenerator: rework css using tailwind + misc cleanup, wording (#2259)
* appgenerator: rework css using tailwind + misc cleanup, wording

* appgenerator: tweak gettext + update translations (at least fr)

* appgenerator: bump version idk
2024-04-30 22:54:07 +02:00

17 lines
526 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>{{ gettext("YunoHost app generator") }}</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="{{ url_for('static', filename='fork-awesome.min.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='tailwind.css') }}">
</head>
<body>
<main class="my-2 mx-auto max-w-screen-md">
{% block main -%}
{%- endblock main %}
</main>
</body>
</html>