Files
coolify-examples/flask/templates/index.html
Andras Bacsai 269ae91c9b Update README.md (#53)
* Update README.md

* flask
2025-09-25 11:26:30 +02:00

11 lines
295 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<script src="{{ url_for('static', filename='script.js') }}" defer></script>
<title>Minimal Flask App</title>
</head>
<body>
<h1>Hello, Flask!</h1>
</body>
</html>