-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpolicy.html
More file actions
95 lines (87 loc) · 3.51 KB
/
policy.html
File metadata and controls
95 lines (87 loc) · 3.51 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Policy | Commit Intranet</title>
<link rel="stylesheet" href="css/styles.css" />
<script defer src="scripts/upload-sim.js"></script>
</head>
<body>
<div class="layout">
<!-- Sidebar -->
<aside class="sidebar" aria-label="Department Navigation">
<div class="sidebar-header">
<img src="assets/commit-logo-white.svg" alt="Commit Partnership Logo" class="sidebar-logo" />
<!-- Sidebar -->
<aside class="sidebar" aria-label="Department Navigation">
<div class="sidebar-header">
<img src="assets/commit-logo-white.svg" alt="Commit Logo" class="sidebar-logo" />
<aside class="sidebar" aria-label="Department Navigation">
</div>
<nav>
<ul>
<h2>Departments</h2>
<li><a href="departments/hr.html">👥 HR</a></li>
<li><a href="departments/it.html">💻 IT Support</a></li>
<li><a href="departments/operations.html">📦 Operations</a></li>
<li><a href="departments/policy.html"class="active">📜 Policy</a></li>
<li><a href="departments/development.html">💡 Development</a></li>
</ul>
</nav>
</aside>
<!-- Main Content -->
<div class="main-content">
<header class="site-header">
<h1>Policy Department</h1>
<nav class="topnav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="news.html">News</a></li>
<li><a href="calendar.html">Calendar</a></li>
<li><a href="documents.html">Documents</a></li>
<li><a href="shoutouts.html">Shoutouts</a></li>
<li><a href="wiki.html">Wiki</a></li>
<li><a href="policy.html" class="active">Policy</a></li>
</ul>
</nav>
</header>
<main class="container">
<section class="panel">
<h3>Welcome to Policy</h3>
<p>The Policy team leads initiatives that drive equity, access, and data-informed solutions. Explore our latest publications, upload drafts for review, and stay connected with team updates.</p>
</section>
<section class="panel">
<h3>Upload Policy Documents</h3>
<form id="upload-form">
<label for="fileInput">Upload draft or resource:</label>
<input type="file" id="fileInput" name="fileInput" />
<button type="submit">Upload</button>
<p class="success-message" id="upload-success">File uploaded successfully (simulated)!</p>
</form>
<ul id="uploaded-list"></ul>
</section>
<section class="panel">
<h3>Recent Policy Highlights</h3>
<ul>
<li><strong>July 31:</strong> New Charter Policy Analysis Released</li>
<li><strong>July 22:</strong> Research on Teacher Impact Published</li>
<li><strong>July 10:</strong> Stakeholder Roundtable Scheduled</li>
</ul>
</section>
<section class="panel">
<h3>Quick Access</h3>
<ul>
<li><a href="documents.html">All Policy Documents</a></li>
<li><a href="wiki.html">Policy Wiki Entries</a></li>
<li><a href="calendar.html">Upcoming Public Events</a></li>
</ul>
</section>
</main>
<footer class="site-footer">
<p>© 2025 The Commit Partnership. All rights reserved.</p>
</footer>
</div>
</div>
</body>
</html>