Skip to content

Commit 840923f

Browse files
feat: add skipper-go integration card (testing/Testify/Ginkgo)
Replaces the coming-soon placeholder with a full card linking to the GitHub repo. Also fixes card layout: replace flex:1 on card-frameworks with margin-top:auto on card-link so framework badges stay compact and the link always anchors to the card bottom regardless of badge count.
1 parent 87e3242 commit 840923f

2 files changed

Lines changed: 17 additions & 5 deletions

File tree

index.html

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -229,13 +229,26 @@ <h2>Integrations</h2>
229229
</a>
230230
</div>
231231

232-
<!-- Go (coming soon) -->
233-
<div class="card card-coming">
232+
<!-- Go -->
233+
<div class="card">
234234
<div class="card-header">
235235
<span class="card-title">skipper-go</span>
236236
<span class="badge badge-go">Go</span>
237237
</div>
238-
<p class="card-desc">Coming soon.</p>
238+
<p class="card-desc">
239+
Skipper for Go projects, with adapters for the standard
240+
library and the most popular testing frameworks.
241+
</p>
242+
<p class="card-frameworks-label">Supported frameworks</p>
243+
<div class="card-frameworks">
244+
<span class="badge badge-fw">testing</span>
245+
<span class="badge badge-fw">Testify</span>
246+
<span class="badge badge-fw">Ginkgo</span>
247+
</div>
248+
<a class="card-link" href="https://github.com/get-skipper/skipper-go" target="_blank" rel="noopener">
249+
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"/></svg>
250+
View on GitHub
251+
</a>
239252
</div>
240253

241254
<!-- Python (coming soon) -->

style.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,6 @@ body {
299299
display: flex;
300300
flex-wrap: wrap;
301301
gap: 5px;
302-
flex: 1;
303302
}
304303

305304
.card-link {
@@ -310,7 +309,7 @@ body {
310309
font-weight: 600;
311310
color: var(--accent);
312311
text-decoration: none;
313-
margin-top: 4px;
312+
margin-top: auto;
314313
}
315314

316315
.card-link:hover {

0 commit comments

Comments
 (0)