-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
230 lines (201 loc) Β· 7.32 KB
/
index.html
File metadata and controls
230 lines (201 loc) Β· 7.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Release Documentation - Hack23 Homepage</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
padding: 2rem;
}
.container {
max-width: 1200px;
margin: 0 auto;
background: white;
border-radius: 12px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
overflow: hidden;
}
header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 3rem 2rem;
text-align: center;
}
header h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
font-weight: 700;
}
header p {
font-size: 1.1rem;
opacity: 0.95;
}
main {
padding: 3rem 2rem;
}
.intro {
margin-bottom: 3rem;
padding: 1.5rem;
background: #f8f9fa;
border-left: 4px solid #667eea;
border-radius: 4px;
}
.intro h2 {
color: #667eea;
margin-bottom: 1rem;
}
.docs-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}
.doc-card {
border: 2px solid #e9ecef;
border-radius: 8px;
padding: 1.5rem;
transition: all 0.3s ease;
}
.doc-card:hover {
border-color: #667eea;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}
.doc-card h3 {
color: #667eea;
margin-bottom: 0.5rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.doc-card .icon {
font-size: 1.5rem;
}
.doc-card p {
color: #6c757d;
margin-bottom: 1rem;
}
.doc-card .status {
display: inline-block;
padding: 0.25rem 0.75rem;
border-radius: 12px;
font-size: 0.85rem;
font-weight: 600;
}
.status.pending {
background: #fff3cd;
color: #856404;
}
.status.available {
background: #d4edda;
color: #155724;
}
.footer-note {
margin-top: 3rem;
padding: 1.5rem;
background: #f8f9fa;
border-radius: 8px;
text-align: center;
color: #6c757d;
}
.footer-note a {
color: #667eea;
text-decoration: none;
font-weight: 600;
}
.footer-note a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>π Release Documentation</h1>
<p>Comprehensive documentation and reports for each release</p>
</header>
<main>
<div class="intro">
<h2>About This Documentation</h2>
<p>
This directory contains automatically generated documentation and reports for each release of the Hack23 homepage.
All documentation follows the "documentation as code" principle - generated, versioned, and committed alongside the code.
</p>
<p style="margin-top: 1rem;">
<strong>Release workflow status:</strong> Reports will be generated automatically during the release process.
</p>
</div>
<h2 style="margin-bottom: 1.5rem; color: #333;">Available Documentation</h2>
<div class="docs-grid">
<div class="doc-card">
<h3>
<span class="icon">π</span>
Quality Reports
</h3>
<p>Lighthouse audit reports for performance, accessibility, best practices, and SEO metrics.</p>
<span class="status pending">Generated on release</span>
</div>
<div class="doc-card">
<h3>
<span class="icon">β
</span>
HTML Validation
</h3>
<p>Complete HTML validation reports ensuring standards compliance across all pages.</p>
<span class="status pending">Generated on release</span>
</div>
<div class="doc-card">
<h3>
<span class="icon">βΏ</span>
Accessibility Audit
</h3>
<p>WCAG 2.1 AA compliance verification and accessibility test results.</p>
<span class="status pending">Generated on release</span>
</div>
<div class="doc-card">
<h3>
<span class="icon">π</span>
Security Reports
</h3>
<p>OWASP ZAP security scan results and vulnerability assessments.</p>
<span class="status pending">Generated on release</span>
</div>
<div class="doc-card">
<h3>
<span class="icon">π¦</span>
Build Artifacts
</h3>
<p>Release packages with SBOM (Software Bill of Materials) and provenance attestations.</p>
<span class="status pending">Generated on release</span>
</div>
<div class="doc-card">
<h3>
<span class="icon">π</span>
Release Notes
</h3>
<p>Automatically generated changelog and release notes for each version.</p>
<span class="status pending">Generated on release</span>
</div>
</div>
<div class="footer-note">
<p>
<strong>Documentation as Code</strong><br>
All reports are automatically generated and committed to the repository during the release process.
View releases and download artifacts at
<a href="https://github.com/Hack23/homepage/releases" target="_blank" rel="noopener noreferrer">GitHub Releases</a>.
</p>
</div>
</main>
</div>
</body>
</html>