-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.html.back
37 lines (33 loc) · 1.04 KB
/
base.html.back
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}My App{% endblock %}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<nav>
<ul>
<li><a href="{{ url_for('home') }}">Home</a></li>
<li><a href="{{ url_for('mentor_match') }}">Mentor Match</a></li>
<li><a href="{{ url_for('submit_page') }}">Submit Page</a></li>
<li><a href="{{ url_for('calendar') }}">Calendar</a></li>
<!-- Add more pages as needed -->
</ul>
</nav>
<div class="content">
{% block content %}{% endblock %}
</div>
<aside class="profile">
<!-- Profile data goes here -->
<h2>Profile</h2>
<!-- Add profile data here -->
</aside>
<aside class="chat">
<!-- Chat goes here -->
<h2>Chat</h2>
<!-- Add chat functionality here -->
</aside>
</body>
</html>