herreweb_site/templates/index.html

22 lines
684 B
HTML
Raw Normal View History

2023-12-24 21:01:34 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2023-12-24 21:24:57 +00:00
<title>Herreweb Repository</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='styles.css') }}">
2023-12-24 21:01:34 +00:00
</head>
<body>
2023-12-24 21:24:57 +00:00
<div class="main-container">
<h1>Our Projects</h1>
<div class="folder-container">
{% for folder in repository_folders %}
<a href="{{ url_for('repository_page', folder=folder) }}">
<button class="document-button">{{ folder }}</button>
</a>
{% endfor %}
</div>
</div>
2023-12-24 21:01:34 +00:00
</body>
</html>