Skip to content

Commit 6975a32

Browse files
committed
Small fixes
1 parent 166185f commit 6975a32

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

spock-website/index.html

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,22 @@
1111
<meta name="robots" content="index, follow">
1212

1313
<meta property="og:type" content="website">
14-
<meta property="og:url" content="https://spockframework.org/"> <meta property="og:title" content="Spock Framework - the enterprise-ready specification framework">
14+
<meta property="og:url" content="https://spockframework.org/">
15+
<meta property="og:title" content="Spock Framework - the enterprise-ready specification framework">
1516
<meta property="og:description" content="Spock is a testing, specification, and mocking framework for JVM developers that emphasizes readability and clarity. By blending BDD concepts and Groovy's concise syntax, Spock helps teams write tests that are easy to understand and enjoyable to maintain.">
1617
<meta property="og:image" content="spock-main-logo.svg">
1718
<meta property="twitter:card" content="summary">
18-
<meta property="twitter:url" content="https://spockframework.org/"> <meta property="twitter:title" content="Spock Framework - the enterprise-ready specification framework">
19+
<meta property="twitter:url" content="https://spockframework.org/">
20+
<meta property="twitter:title" content="Spock Framework - the enterprise-ready specification framework">
1921
<meta property="twitter:description" content="Spock is a testing, specification, and mocking framework for JVM developers that emphasizes readability and clarity. By blending BDD concepts and Groovy's concise syntax, Spock helps teams write tests that are easy to understand and enjoyable to maintain.">
2022
<meta property="twitter:image" content="spock-main-logo.svg">
2123

2224
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet"
2325
integrity="sha384-/rJKQnzOkEo+daG0jMjU1IwwY9unxt1NBw3Ef2fmOJ3PW/TfAg2KXVoWwMZQZtw9"
2426
crossorigin="anonymous">
25-
<link rel="preconnect" href="https://fonts.googleapis.com">
26-
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
27-
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
27+
<link rel="preconnect" href="https://fonts.googleapis.com" crossorigin="anonymous">
28+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous">
29+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet" crossorigin="anonymous">
2830
</head>
2931
<body class="leading-normal tracking-normal">
3032

@@ -73,8 +75,10 @@ <h2 class="text-3xl md:text-4xl font-bold mb-8 text-gray-100" data-aos="fade-up"
7375
<a href="https://github.com/spockframework/spock/discussions" class="mx-3 hover-underline-animation"><i class="fas fa-comment-dots"></i> Discussions</a> <span class="link-separator">|</span>
7476
<a href="https://gitter.im/spockframework/spock" class="mx-3 hover-underline-animation"><i class="fas fa-comments"></i> Chat</a>
7577
</div>
76-
<div class="text-center mt-8 flex flex-wrap justify-center items-center" data-aos="fade-up" data-aos-delay="400">
77-
<a href="https://search.maven.org/search?q=g:org.spockframework" target="_blank"><img src="https://img.shields.io/maven-central/v/org.spockframework/spock-core?style=for-the-badge&label=Latest%20Version&labelColor=374151&color=1562ae" alt="Spock Latest Version"></a>
78+
<div class="text-center mt-8 flex flex-wrap justify-center items-center gap-4" data-aos="fade-up" data-aos-delay="400">
79+
<a href="https://search.maven.org/search?q=g:org.spockframework" target="_blank"><img src="https://img.shields.io/maven-central/v/org.spockframework/spock-core?style=for-the-badge&label=Latest%20Version&labelColor=374151&color=1562ae&versionSuffix=groovy-2.5" alt="Spock Latest Version for Groovy 2.5"></a>
80+
<a href="https://search.maven.org/search?q=g:org.spockframework" target="_blank"><img src="https://img.shields.io/maven-central/v/org.spockframework/spock-core?style=for-the-badge&label=Latest%20Version&labelColor=374151&color=1562ae&versionSuffix=groovy-3.0" alt="Spock Latest Version for Groovy 3.0"></a>
81+
<a href="https://search.maven.org/search?q=g:org.spockframework" target="_blank"><img src="https://img.shields.io/maven-central/v/org.spockframework/spock-core?style=for-the-badge&label=Latest%20Version&labelColor=374151&color=1562ae&versionSuffix=groovy-4.0" alt="Spock Latest Version for Groovy 4.0"></a>
7882
</div>
7983
</section>
8084

@@ -293,6 +297,6 @@ <h3 class="text-3xl md:text-4xl font-bold text-center text-gray-100" data-aos="f
293297
});
294298
</script>
295299

296-
<script type="module" src="/src/main.ts"></script>
300+
<script type="module" src="src/main.ts"></script>
297301
</body>
298302
</html>

0 commit comments

Comments
 (0)