mirror of
https://github.com/tebarius/Docker-Flask-QR.git
synced 2025-12-20 22:23:30 +01:00
18 lines
466 B
HTML
18 lines
466 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>QR-Code-Generator</title>
|
|
<!--suppress HtmlUnknownTarget -->
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
<!--suppress HtmlUnknownTarget -->
|
|
<link rel="icon" href="{{ url_for('static', filename='favicon.ico') }}" type="image/x-icon" />
|
|
</head>
|
|
|
|
<body>
|
|
<H1>QRCode-Generator</H1>
|
|
{% block inhalt %}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|