11<!DOCTYPE html>
2- < html >
2+ < html lang =" en " >
33< head >
4+ < meta charset ="UTF-8 ">
45 < meta http-equiv ="Cache-Control " content ="no-cache, no-store, must-revalidate ">
56 < meta http-equiv ="Pragma " content ="no-cache ">
67 < meta http-equiv ="Expires " content ="0 ">
135136 .github-link svg {
136137 fill : white;
137138 }
139+ .maven-link {
140+ display : inline-flex;
141+ align-items : center;
142+ gap : 8px ;
143+ background : # 6f42c1 ;
144+ color : white;
145+ padding : 12px 24px ;
146+ border-radius : 6px ;
147+ text-decoration : none;
148+ font-weight : 600 ;
149+ margin-top : 15px ;
150+ transition : background 0.2s ;
151+ }
152+ .maven-link : hover {
153+ background : # 5a32a3 ;
154+ text-decoration : none;
155+ }
156+ .maven-link svg {
157+ fill : white;
158+ }
159+ .header-buttons {
160+ display : flex;
161+ gap : 12px ;
162+ justify-content : center;
163+ flex-wrap : wrap;
164+ }
138165 .legend {
139166 display : flex;
140167 flex-wrap : wrap;
167194 .legend-color .archived {
168195 background : # 6c757d ;
169196 }
197+ .collapsible {
198+ margin-top : 30px ;
199+ }
200+ .collapsible-toggle {
201+ background : # f6f8fa ;
202+ border : 1px solid # e1e4e8 ;
203+ border-radius : 6px ;
204+ padding : 12px 20px ;
205+ cursor : pointer;
206+ display : flex;
207+ align-items : center;
208+ justify-content : space-between;
209+ width : 100% ;
210+ font-size : 16px ;
211+ font-weight : 500 ;
212+ color : # 24292e ;
213+ transition : background 0.2s ;
214+ }
215+ .collapsible-toggle : hover {
216+ background : # ebeef1 ;
217+ }
218+ .collapsible-toggle ::after {
219+ content : '▶' ;
220+ font-size : 12px ;
221+ transition : transform 0.2s ;
222+ }
223+ .collapsible-toggle .open ::after {
224+ transform : rotate (90deg );
225+ }
226+ .collapsible-content {
227+ display : none;
228+ padding-top : 10px ;
229+ }
230+ .collapsible-content .open {
231+ display : block;
232+ }
170233 </ style >
171234</ head >
172235< body >
173236 < div class ="container ">
174237 < div class ="header ">
175- < h1 > 📚 Copilot SDK for Java</ h1 >
176- < a href ="https://github.com/copilot-community-sdk/copilot-sdk-java " class ="github-link ">
177- < svg height ="20 " width ="20 " viewBox ="0 0 16 16 "> < path d ="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z "> </ path > </ svg >
178- View on GitHub
179- </ a >
238+ < h1 > Copilot SDK for Java</ h1 >
239+ < div class ="header-buttons ">
240+ < a href ="https://github.com/copilot-community-sdk/copilot-sdk-java " class ="github-link ">
241+ < svg height ="20 " width ="20 " viewBox ="0 0 16 16 "> < path d ="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z "> </ path > </ svg >
242+ View on GitHub
243+ </ a >
244+ < a href ="https://central.sonatype.com/artifact/io.github.copilot-community-sdk/copilot-sdk " class ="maven-link ">
245+ < svg height ="20 " width ="20 " viewBox ="0 0 24 24 "> < path d ="M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5 "> </ path > </ svg >
246+ View on Maven Central
247+ </ a >
248+ </ div >
180249 </ div >
181250
182251 < div class ="warning ">
@@ -189,9 +258,20 @@ <h1>📚 Copilot SDK for Java</h1>
189258
190259 < h2 > Available Versions</ h2 >
191260 < ul class ="version-list ">
192- <!-- VERSION_LIST_PLACEHOLDER -->
261+ <!-- CURRENT_VERSIONS_PLACEHOLDER -->
193262 </ ul >
194263
264+ < div class ="collapsible ">
265+ < button class ="collapsible-toggle " onclick ="this.classList.toggle('open'); this.nextElementSibling.classList.toggle('open'); ">
266+ Older Releases
267+ </ button >
268+ < div class ="collapsible-content ">
269+ < ul class ="version-list ">
270+ <!-- OLDER_VERSIONS_PLACEHOLDER -->
271+ </ ul >
272+ </ div >
273+ </ div >
274+
195275 < div class ="legend ">
196276 < div class ="legend-item ">
197277 < div class ="legend-color latest "> </ div >
@@ -206,7 +286,8 @@ <h2>Available Versions</h2>
206286 < div class ="footer ">
207287 < p >
208288 < a href ="https://github.com/copilot-community-sdk/copilot-sdk-java "> GitHub Repository</ a > ·
209- < a href ="https://central.sonatype.com/artifact/io.github.copilot-community-sdk/copilot-sdk "> Maven Central</ a >
289+ < a href ="https://central.sonatype.com/artifact/io.github.copilot-community-sdk/copilot-sdk "> Maven Central</ a > ·
290+ < a href ="https://github.com/copilot-community-sdk/copilot-sdk-java/blob/main/LICENSE "> MIT License</ a >
210291 </ p >
211292 </ div >
212293 </ div >
0 commit comments