mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-18 21:38:58 +00:00
11 lines
295 B
HTML
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> |