-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
354 lines (344 loc) · 11.9 KB
/
index.html
File metadata and controls
354 lines (344 loc) · 11.9 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Housing Hope Data Team Infobase</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
body {
padding-top: 5rem;
background: linear-gradient(to right, #4A90E2, #007AFF);
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
line-height: 1.6;
color: #333;
}
.container {
padding: 2rem 1rem;
max-width: 1000px;
}
/* Page Header - Professional Card Style */
.page-header {
margin-bottom: 3rem;
padding: 2rem;
}
.header-card {
background: white;
border-radius: 16px;
padding: 2.5rem;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 4px 15px rgba(0, 0, 0, 0.05);
display: flex;
align-items: center;
gap: 2rem;
max-width: 900px;
margin: 0 auto;
}
.header-icon-area {
flex-shrink: 0;
width: 80px;
height: 80px;
background: linear-gradient(135deg, #4A90E2, #007AFF);
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}
.header-icon-area i {
font-size: 2.2rem;
color: white;
}
.header-text-area {
flex: 1;
}
.header-text-area h1 {
font-size: 2rem;
font-weight: 700;
color: #1a202c;
margin: 0 0 0.5rem 0;
letter-spacing: -0.025em;
line-height: 1.2;
}
.header-text-area .subtitle {
font-size: 1.1rem;
font-weight: 400;
color: #4a5568;
margin: 0;
line-height: 1.5;
}
/* Special Banner Styling */
.resource-banner {
background: white;
border-radius: 12px;
padding: 2rem;
margin-bottom: 3rem;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
border-left: 5px solid #17a2b8;
}
.resource-banner h5 {
color: #17a2b8;
font-weight: 600;
margin-bottom: 0.5rem;
}
.resource-banner a {
color: #17a2b8;
text-decoration: none;
font-weight: 600;
}
.resource-banner a:hover {
text-decoration: underline;
}
.resource-banner .btn-outline-info {
border-color: #17a2b8;
color: #17a2b8;
}
.resource-banner .btn-outline-info:hover {
background-color: #17a2b8;
border-color: #17a2b8;
}
/* HMIS Updates Banner Styling */
.hmis-updates-banner {
background: white;
border-radius: 12px;
padding: 2rem;
margin-top: 3rem;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
border-left: 5px solid #495057;
}
.hmis-updates-banner h5 {
color: #495057;
font-weight: 600;
margin-bottom: 0.5rem;
}
.hmis-updates-banner a {
color: #495057;
text-decoration: none;
font-weight: 600;
}
.hmis-updates-banner a:hover {
text-decoration: underline;
}
.hmis-updates-banner .btn-outline-secondary {
border-color: #495057;
color: #495057;
}
.hmis-updates-banner .btn-outline-secondary:hover {
background-color: #495057;
border-color: #495057;
}
/* Navigation Cards */
.nav-card {
background: white;
border-radius: 12px;
padding: 2rem;
height: 100%;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: none;
display: flex;
flex-direction: column;
}
.nav-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.nav-card-icon {
width: 60px;
height: 60px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.5rem;
font-size: 1.8rem;
color: white;
}
.nav-card-icon.documents {
background: linear-gradient(135deg, #28a745, #20c997);
}
.nav-card-icon.units {
background: linear-gradient(135deg, #6f42c1, #8e44ad);
}
.nav-card-icon.enrollment {
background: linear-gradient(135deg, #007bff, #0056b3);
}
.nav-card h2 {
color: #1a202c;
font-size: 1.4rem;
font-weight: 600;
margin-bottom: 1rem;
}
.nav-card p {
color: #495057;
font-size: 1.05rem;
flex-grow: 1;
margin-bottom: 1.5rem;
}
.nav-card .btn {
border-radius: 8px;
font-weight: 500;
padding: 0.75rem 1.5rem;
transition: all 0.3s ease;
}
.nav-card .btn-success {
background: linear-gradient(135deg, #28a745, #20c997);
border: none;
}
.nav-card .btn-success:hover {
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}
.nav-card .btn-purple {
background: linear-gradient(135deg, #6f42c1, #8e44ad);
border: none;
color: white;
}
.nav-card .btn-purple:hover {
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
}
.nav-card .btn-primary {
background: linear-gradient(135deg, #007bff, #0056b3);
border: none;
}
.nav-card .btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}
/* Responsive Design */
@media (max-width: 768px) {
.container {
padding: 1rem;
}
.page-header {
padding: 1rem;
}
.header-card {
padding: 2rem;
flex-direction: column;
text-align: center;
gap: 1.5rem;
}
.header-icon-area {
width: 70px;
height: 70px;
}
.header-icon-area i {
font-size: 2rem;
}
.header-text-area h1 {
font-size: 1.75rem;
}
.header-text-area .subtitle {
font-size: 1rem;
}
.nav-card {
padding: 1.5rem;
margin-bottom: 1.5rem;
}
.resource-banner {
padding: 1.5rem;
}
}
</style>
</head>
<body>
<!-- Navbar placeholder where the external navbar will be loaded -->
<div id="navbar-placeholder"></div>
<main class="container">
<!-- Page Header -->
<div class="page-header">
<div class="header-card">
<div class="header-icon-area">
<i class="fas fa-home"></i>
</div>
<div class="header-text-area">
<h1>Housing Hope Data Team Infobase</h1>
<div class="subtitle">Your central hub for training guides, assessment tools, and essential resources for Apricot, ADP, and program management</div>
</div>
</div>
</div>
<!-- Tristan's Resource Website Banner -->
<div class="resource-banner">
<div class="d-flex justify-content-between align-items-center">
<div>
<h5 class="mb-1">
<a href="http://snocohelp.com" target="_blank">
<i class="fas fa-book me-2"></i><strong>Tristan's Resource Website</strong>
</a>
</h5>
<p class="mb-0">A collection of occasionally useful resources for human and community services professionals.</p>
</div>
<a href="http://snocohelp.com" target="_blank" class="btn btn-outline-info">
Visit Site
</a>
</div>
</div>
<!-- Navigation Cards -->
<div class="row gy-4">
<div class="col-md-4">
<div class="nav-card">
<div class="nav-card-icon documents">
<i class="fas fa-file-text"></i>
</div>
<h2>Assessment Forms & Documents</h2>
<p>Access all required forms, assessments, and reference documents for program enrollment and data collection.</p>
<a href="/documents/" class="btn btn-success">Browse Documents</a>
</div>
</div>
<div class="col-md-4">
<div class="nav-card">
<div class="nav-card-icon units">
<i class="fas fa-home"></i>
</div>
<h2>Unit Designation Dictionary</h2>
<p>Access detailed explanations of unit designations to enhance your understanding and reporting accuracy.</p>
<a href="/UnitDesignations/" class="btn btn-purple">View Dictionary</a>
</div>
</div>
<div class="col-md-4">
<div class="nav-card">
<div class="nav-card-icon enrollment">
<i class="fas fa-search"></i>
</div>
<h2>Program Enrollment Guide</h2>
<p>Learn how to identify and enroll participants in our programs through this detailed step-by-step guide.</p>
<a href="/Prog/" class="btn btn-primary">View Guide</a>
</div>
</div>
</div>
<!-- 2025 HMIS Updates Banner -->
<div class="hmis-updates-banner">
<div class="d-flex justify-content-between align-items-center">
<div>
<h5 class="mb-1">
<a href="/hmis-updates-2025/">
<i class="fas fa-file-contract me-2"></i><strong>2025 HMIS Updates</strong>
</a>
</h5>
<p class="mb-0">Comprehensive report of changes and compliance updates in the 2025 HMIS Data Standards Manual with detailed comparisons.</p>
</div>
<a href="/hmis-updates-2025/" class="btn btn-outline-secondary">
View Updates
</a>
</div>
</div>
</main>
<!-- Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
<!-- Load external navbar -->
<script>
// Fetch and insert the navbar
fetch('navbar.html')
.then(response => response.text())
.then(data => {
document.getElementById('navbar-placeholder').innerHTML = data;
});
</script>
</body>
</html>