|
27 | 27 | <!-- font awesome style --> |
28 | 28 | <link href="css/font-awesome.min.css" rel="stylesheet" /> |
29 | 29 |
|
30 | | - <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.css" /> |
31 | | - |
32 | | - |
33 | | - |
34 | | - <link href="css/swiper.css" rel="stylesheet"> |
35 | 30 |
|
36 | 31 | <!-- Custom styles for this template --> |
37 | 32 | <link href="css/style.css" rel="stylesheet" /> |
38 | 33 |
|
39 | 34 | <!-- responsive style --> |
40 | 35 | <link href="css/responsive.css" rel="stylesheet" /> |
41 | 36 |
|
| 37 | + |
| 38 | + <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.css" /> |
| 39 | + |
42 | 40 | </head> |
43 | 41 |
|
44 | 42 | <body> |
|
69 | 67 | <a class="nav-link" href="index.html">Home <span class="sr-only">(current)</span></a> |
70 | 68 | </li> |
71 | 69 | <li class="nav-item"> |
72 | | - <a class="nav-link" href="https://clinicadl.readthedocs.io/en/latest/"> Documentation</a> |
| 70 | + <a class="nav-link" href="https://clinicadl.readthedocs.io/en/stable/"> Documentation</a> |
73 | 71 | </li> |
74 | 72 | <li class="nav-item"> |
75 | 73 | <a class="nav-link" href="publications.html">Publications</a> |
|
106 | 104 | </h1> |
107 | 105 |
|
108 | 106 | <h2> |
109 | | - Open source deep learning software for reproducible neuroimaging studies |
| 107 | + Open source deep learning python package for reproducible neuroimaging studies |
110 | 108 | </h2> |
111 | 109 |
|
112 | 110 | </p> |
@@ -172,7 +170,7 @@ <h2 class=""> |
172 | 170 | </div> |
173 | 171 | <div class="col-md-2 btn-box"> |
174 | 172 | <a class="" href="https://clinicadl.readthedocs.io/en/latest/installation.html"> |
175 | | - INSTALLATION |
| 173 | + INSTALLATION |
176 | 174 | </a> |
177 | 175 | </div> |
178 | 176 | </div> |
|
197 | 195 | </div> |
198 | 196 | <div class="col-md-8"> |
199 | 197 | <p> |
200 | | - ClinicaDL is an <b>open-source deep learning software for reproducible neuroimaging processing</b>. It can be seen as the deep learning extension of Clinica, an open-source Python library for |
| 198 | + ClinicaDL is an <b>open-source deep learning python package for reproducible neuroimaging processing</b>. It can be seen as the deep learning extension of Clinica, an open-source Python library for |
201 | 199 | neuroimaging preprocessing and analysis. The combination of <b>ClinicaDL and Clinica</b> allows performing an end-to-end neuroimaging analysis, from the download of raw data sets to the interpretation |
202 | 200 | of trained networks, including neuroimaging preprocessing, quality check, label definition, architecture search, and network training and evaluation |
203 | 201 | </p> |
@@ -441,9 +439,11 @@ <h2 class=""> |
441 | 439 | </a> |
442 | 440 | </div> |
443 | 441 | </div> |
| 442 | + |
444 | 443 | <div class="swiper-button-next"></div> |
445 | 444 | <div class="swiper-button-prev"></div> |
446 | 445 | </div> |
| 446 | + |
447 | 447 |
|
448 | 448 |
|
449 | 449 | </div> |
@@ -541,9 +541,29 @@ <h4> |
541 | 541 | <!-- owl slider --> |
542 | 542 | <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"> |
543 | 543 | </script> |
| 544 | + |
| 545 | + <!-- swiper js --> |
| 546 | + <script src="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.js"></script> |
| 547 | + |
| 548 | + <script> |
| 549 | + document.addEventListener("DOMContentLoaded", function () { |
| 550 | + new Swiper(".mySwiper", { |
| 551 | + slidesPerView: 5, // Afficher 5 éléments à la fois |
| 552 | + slidesPerGroup: 1, // Glisser 1 élément à la fois |
| 553 | + loop: true, // Boucle infinie |
| 554 | + autoplay: { |
| 555 | + delay: 3000, // Défiler toutes les 2 secondes |
| 556 | + disableOnInteraction: false, // Continue après une interaction |
| 557 | + }, |
| 558 | + navigation: { |
| 559 | + nextEl: ".swiper-button-next", |
| 560 | + prevEl: ".swiper-button-prev" |
| 561 | + } |
| 562 | + }); |
| 563 | + }); |
| 564 | + </script> |
544 | 565 | <!-- custom js --> |
545 | 566 | <script type="text/javascript" src="js/custom.js"></script> |
546 | | - <script src="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.js"></script> |
547 | 567 | <!-- Google Map --> |
548 | 568 | <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCh39n5U-4IoWpsVGUHWdqB6puEkhRLdmI&callback=myMap"> |
549 | 569 | </script> |
|
0 commit comments