mirror of
https://github.com/YunoHost/apps.git
synced 2024-09-03 20:06:07 +02:00
* appgenerator: rework css using tailwind + misc cleanup, wording * appgenerator: tweak gettext + update translations (at least fr) * appgenerator: bump version idk
17 lines
526 B
HTML
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>
|