info field. ability to go wwithout defaults

This commit is contained in:
2022-05-27 17:14:31 +03:00
parent 8391ad9850
commit 93705f758f
7 changed files with 194 additions and 95 deletions

View File

@@ -1,14 +1,15 @@
<!doctype html>
<!DOCTYPE html>
<html>
<head>
<title>{{ title }}</title>
<link rel=stylesheet type=text/css href="{{ url_for('static', filename='style.css') }}">
<meta name="viewport" content="width=440" />
<script language="javascript" src="{{ url_for('static', filename='script.js') }}" ></script>
<title>{{ g.config.title }}</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}">
<meta name="viewport" content="width=440">
<meta name="VERSION" content="{{ g.version }}">
<script language="javascript" src="{{ url_for('static', filename='script.js') }}"></script>
</head>
<body>
<div class=page>
{% block body %}{% endblock %}
</div>
<div class="page">
{% block body %}{% endblock %}
</div>
</body>
</html>