25 lines
653 B
HTML
25 lines
653 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Index Calculator</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='libs/bootstrap.min.css') }}">
|
|
<script src="{{ url_for('static', filename='js/file_reader.js') }}"></script>
|
|
</head>
|
|
<body class="bg-light">
|
|
<nav class="navbar navbar-light bg-light">
|
|
<a class="navbar-brand" href="#">
|
|
Assignment 1
|
|
</a>
|
|
</nav>
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
{% for note in notes %}
|
|
<div class="col-3">
|
|
<p>{{note[1]}}</p>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |