37 lines
1.4 KiB
HTML
37 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="de">
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<title>Flask Info</title>
|
||
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
||
</head>
|
||
<body>
|
||
<h1>Flask</h1>
|
||
|
||
<div id="abschnitt1">
|
||
<h2>Flask Web development, one drop at a time</h2>
|
||
<p>
|
||
Welcome to Flask’s documentation. Get started with Installation and then get an overview with the Quickstart.
|
||
There is also a more detailed <strong>Tutorial</strong> that shows how to create a small but complete application with Flask.
|
||
Common patterns are described in the Patterns for Flask section.
|
||
The rest of the docs describe each component of Flask in detail, with a full reference in the API section.
|
||
Flask depends on the <span class="green">Jinja</span> template engine and the Werkzeug WSGI toolkit.
|
||
</p>
|
||
</div>
|
||
|
||
<div id="abschnitt2">
|
||
<h2>User’s guide</h2>
|
||
<p>
|
||
Flask provides configuration and conventions, with <em>sensible defaults</em>, to get started.
|
||
This section of the documentation explains the different parts of the <strong><em>Flask framework</em></strong> and how they can be used, customized, and extended.
|
||
Beyond Flask itself, look for community-maintained extensions to add even more functionality.
|
||
</p>
|
||
</div>
|
||
|
||
<footer>
|
||
Autor: Butenhoff – <a href="mailto:tobu6289@th-wildau.de">tobu6289@th-wildau.de</a>
|
||
</footer>
|
||
</body>
|
||
</html>
|
||
|