A simple flask app with web interface
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

21 lines
554 B

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset=”utf-8”>
<title>[{{ environment }}] {% if title %}{{ title }}{% else %}Home Page{% endif %}</title>
{% block styles %}
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" />
{% endblock %}
{% block scripts %}
{% endblock %}
</head>
<body>
<div class="container">
<h1>[{{ environment }}] Home Page</h1>
{% block app_content %}{% endblock %}
</div>
</body>
</html>