-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
317 lines (293 loc) · 9.77 KB
/
index.html
File metadata and controls
317 lines (293 loc) · 9.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>DevQuality Blog — Engineering Quality at Speed</title>
<meta name="description" content="Practical writing on test management, DevOps quality engineering, and shipping software with confidence."/>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400&family=Source+Serif+4:wght@300;400;600&display=swap" rel="stylesheet">
<style>
:root {
--ink: #1a1a18;
--paper: #f7f4ee;
--accent: #c84b2f;
--muted: #7a7060;
--rule: #d9d3c5;
--card-bg: #f0ece3;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
background: var(--paper);
color: var(--ink);
font-family: 'Source Serif 4', Georgia, serif;
font-weight: 300;
font-size: 1.05rem;
line-height: 1.8;
}
/* ── Topbar ── */
.topbar {
border-bottom: 1px solid var(--rule);
padding: 1rem 2.5rem;
display: flex;
align-items: center;
justify-content: space-between;
animation: fadeDown 0.5s ease both;
}
.topbar .logo {
font-family: 'Playfair Display', serif;
font-weight: 700;
font-size: 1.15rem;
color: var(--ink);
text-decoration: none;
}
.topbar .logo span { color: var(--accent); }
.topbar nav a {
font-size: 0.78rem;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--muted);
text-decoration: none;
margin-left: 2rem;
transition: color 0.2s;
}
.topbar nav a:hover { color: var(--accent); }
/* ── Masthead ── */
.masthead {
max-width: 900px;
margin: 0 auto;
padding: 6rem 2.5rem 4rem;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: end;
animation: fadeUp 0.7s 0.15s ease both;
}
.masthead-left h1 {
font-family: 'Playfair Display', serif;
font-size: clamp(2.8rem, 6vw, 4.5rem);
font-weight: 700;
line-height: 1.05;
letter-spacing: -0.03em;
}
.masthead-left h1 em {
font-style: italic;
color: var(--accent);
}
.masthead-right {
padding-bottom: 0.4rem;
}
.masthead-right p {
font-size: 1.05rem;
color: var(--muted);
line-height: 1.75;
margin-bottom: 1.5rem;
}
.masthead-right .cta {
display: inline-block;
background: var(--ink);
color: var(--paper);
font-size: 0.75rem;
letter-spacing: 0.14em;
text-transform: uppercase;
padding: 0.75rem 1.6rem;
text-decoration: none;
transition: background 0.2s, transform 0.15s;
}
.masthead-right .cta:hover {
background: var(--accent);
transform: translateY(-1px);
}
/* ── Divider ── */
.divider {
max-width: 900px;
margin: 0 auto;
padding: 0 2.5rem;
border-top: 2px solid var(--ink);
display: flex;
align-items: center;
gap: 1rem;
padding-top: 1rem;
}
.divider span {
font-size: 0.72rem;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--muted);
white-space: nowrap;
}
.divider::after {
content: '';
flex: 1;
height: 1px;
background: var(--rule);
}
/* ── Posts grid ── */
.posts {
max-width: 900px;
margin: 0 auto;
padding: 3rem 2.5rem 6rem;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
gap: 2px;
animation: fadeUp 0.7s 0.3s ease both;
}
.post-card {
background: var(--card-bg);
padding: 2.2rem;
text-decoration: none;
color: var(--ink);
display: block;
transition: background 0.2s;
position: relative;
overflow: hidden;
}
.post-card::after {
content: '→';
position: absolute;
bottom: 2rem;
right: 2rem;
font-size: 1.1rem;
color: var(--accent);
opacity: 0;
transform: translateX(-6px);
transition: opacity 0.2s, transform 0.2s;
}
.post-card:hover {
background: var(--ink);
color: var(--paper);
}
.post-card:hover::after { opacity: 1; transform: translateX(0); }
.post-card:hover .post-tag { border-color: var(--accent); color: var(--accent); }
.post-card:hover .post-meta { color: #9a9080; }
.post-tag {
display: inline-block;
font-size: 0.65rem;
letter-spacing: 0.16em;
text-transform: uppercase;
border: 1px solid var(--accent);
color: var(--accent);
padding: 0.2rem 0.6rem;
margin-bottom: 1rem;
}
.post-card h2 {
font-family: 'Playfair Display', serif;
font-size: 1.3rem;
font-weight: 700;
line-height: 1.25;
letter-spacing: -0.01em;
margin-bottom: 0.8rem;
}
.post-card p {
font-size: 0.9rem;
line-height: 1.65;
color: var(--muted);
margin-bottom: 1.5rem;
}
.post-card:hover p { color: #b0a898; }
.post-meta {
font-size: 0.75rem;
letter-spacing: 0.06em;
color: var(--muted);
}
/* placeholder card */
.post-card.placeholder {
background: transparent;
border: 2px dashed var(--rule);
display: flex;
align-items: center;
justify-content: center;
min-height: 240px;
pointer-events: none;
}
.post-card.placeholder span {
font-size: 0.75rem;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--rule);
}
/* ── Footer ── */
footer {
border-top: 1px solid var(--rule);
padding: 2.5rem;
text-align: center;
font-size: 0.78rem;
color: var(--muted);
letter-spacing: 0.05em;
}
footer a { color: var(--muted); text-decoration: underline; }
footer a:hover { color: var(--accent); }
/* ── Animations ── */
@keyframes fadeUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
from { opacity: 0; transform: translateY(-10px); }
to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 680px) {
.masthead { grid-template-columns: 1fr; gap: 2rem; padding: 3.5rem 1.5rem 2.5rem; }
.posts { padding: 2rem 1.5rem 4rem; grid-template-columns: 1fr; }
.topbar { padding: 1rem 1.5rem; }
.topbar nav { display: none; }
.divider { padding-left: 1.5rem; }
}
</style>
</head>
<body>
<header class="topbar">
<a class="logo" href="/DevQuality/">Dev<span>Quality</span></a>
<nav>
<a href="/DevQuality/">Posts</a>
<a href="https://tuskr.app/" target="_blank" rel="noopener">Tuskr ↗</a>
</nav>
</header>
<section class="masthead">
<div class="masthead-left">
<h1>Quality<br>at <em>Speed.</em></h1>
</div>
<div class="masthead-right">
<p>Practical writing on test management, DevOps quality engineering, and the craft of shipping software with confidence — not crossed fingers.</p>
<a class="cta" href="https://tuskr.app/" target="_blank" rel="noopener">Try Tuskr Free</a>
</div>
</section>
<div class="divider"><span>Latest Posts</span></div>
<main class="posts">
<!-- Post 1 -->
<a class="post-card" href="/DevQuality/posts/test-management-devops.html">
<span class="post-tag">DevOps · QA</span>
<h2>Test Management as a DevOps Force Multiplier</h2>
<p>Stop treating test management like overhead. Here's how leading teams use it to ship faster, catch bugs earlier, and make smarter quality decisions.</p>
<div class="post-meta">Matt Calder · Oct 22, 2025 · 6 min</div>
</a>
<!-- Post 2 -->
<a class="post-card" href="/DevQuality/posts/acceptance-criteria-bugs.html">
<span class="post-tag">Agile · Requirements · QA</span>
<h2>7 Ways to Write Acceptance Criteria That Actually Prevent Bugs</h2>
<p>Nearly half of all software defects trace back to requirements problems. Here are seven techniques that fix the problem before a single line of code is written.</p>
<div class="post-meta">Matt Calder · Nov 3, 2025 · 6 min</div>
</a>
<!-- Post 3 -->
<a class="post-card" href="/DevQuality/posts/website-testing-2026.html">
<span class="post-tag">Website Testing · QA Strategy · 2026</span>
<h2>Website Testing in 2026: The Complete QA Framework for Modern Web Teams</h2>
<p>A full-spectrum guide to functional, performance, security, and accessibility testing — plus the strategic decisions that determine whether your programme prevents defects or just records them.</p>
<div class="post-meta">Matt Calder · March 2026 · 12 min</div>
</a>
<!-- Post 4 -->
<a class="post-card" href="/DevQuality/posts/test-management-software-checklist.html">
<span class="post-tag">Tooling · QA Strategy · Buying Guides</span>
<h2>How to Choose Test Management Software: A 6-Point Evaluation Framework</h2>
<p>Most teams pick test management tools based on demos and pricing pages. Here's the rigorous framework that separates tools that look good from tools that actually hold up.</p>
<div class="post-meta">Matt Calder · Nov 14, 2025 · 7 min</div>
</a>
<!-- Placeholder for future posts -->
<div class="post-card placeholder"><span>More posts coming soon</span></div>
</main>
<footer>
<p>Written by Matt Calder · Test smarter with <a href="https://tuskr.app/" target="_blank" rel="noopener">Tuskr</a></p>
</footer>
</body>
</html>