2021-09-15 20:08:03 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2022-09-30 16:45:45 +00:00
|
|
|
|
|
|
|
<head>
|
|
|
|
<link rel="stylesheet" href="style.css">
|
|
|
|
<script>"jquery-3.6.0.min.js"</script>
|
|
|
|
</head>
|
|
|
|
<form method="POST">
|
|
|
|
<input name="text">
|
|
|
|
<input type="submit">
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<body>
|
2022-10-28 20:16:19 +00:00
|
|
|
<h1>{{ title }}</h1>
|
|
|
|
<section class="row">
|
|
|
|
{% for image in plots %}
|
|
|
|
<section class="col-md-4 col-sm-6" style="background-color: green;">
|
|
|
|
<a href="{{ url_for('static', filename='plots/' + image) }}">{{ image }}</a>
|
|
|
|
</section>
|
|
|
|
{% endfor %}
|
|
|
|
</section>
|
2022-09-30 16:45:45 +00:00
|
|
|
</body>
|
|
|
|
|
2021-09-15 20:08:03 +00:00
|
|
|
</html>
|