Skip to content

Commit 112f4db

Browse files
Some update (#31)
* solve some responsive pb * python package
1 parent 81c97ba commit 112f4db

File tree

4 files changed

+52
-41
lines changed

4 files changed

+52
-41
lines changed

docs/clinicadl/css/style.css

Lines changed: 21 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/clinicadl/index.html

Lines changed: 30 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,16 @@
2727
<!-- font awesome style -->
2828
<link href="css/font-awesome.min.css" rel="stylesheet" />
2929

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">
3530

3631
<!-- Custom styles for this template -->
3732
<link href="css/style.css" rel="stylesheet" />
3833

3934
<!-- responsive style -->
4035
<link href="css/responsive.css" rel="stylesheet" />
4136

37+
38+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.css" />
39+
4240
</head>
4341

4442
<body>
@@ -69,7 +67,7 @@
6967
<a class="nav-link" href="index.html">Home <span class="sr-only">(current)</span></a>
7068
</li>
7169
<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>
7371
</li>
7472
<li class="nav-item">
7573
<a class="nav-link" href="publications.html">Publications</a>
@@ -106,7 +104,7 @@ <h1>
106104
</h1>
107105

108106
<h2>
109-
Open source deep learning software for reproducible neuroimaging studies
107+
Open source deep learning python package for reproducible neuroimaging studies
110108
</h2>
111109

112110
</p>
@@ -172,7 +170,7 @@ <h2 class="">
172170
</div>
173171
<div class="col-md-2 btn-box">
174172
<a class="" href="https://clinicadl.readthedocs.io/en/latest/installation.html">
175-
&nbsp;INSTALLATION&nbsp;
173+
INSTALLATION
176174
</a>
177175
</div>
178176
</div>
@@ -197,7 +195,7 @@ <h2>
197195
</div>
198196
<div class="col-md-8">
199197
<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
201199
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
202200
of trained networks, including neuroimaging preprocessing, quality check, label definition, architecture search, and network training and evaluation
203201
</p>
@@ -441,9 +439,11 @@ <h2 class="">
441439
</a>
442440
</div>
443441
</div>
442+
444443
<div class="swiper-button-next"></div>
445444
<div class="swiper-button-prev"></div>
446445
</div>
446+
447447

448448

449449
</div>
@@ -541,9 +541,29 @@ <h4>
541541
<!-- owl slider -->
542542
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js">
543543
</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>
544565
<!-- custom js -->
545566
<script type="text/javascript" src="js/custom.js"></script>
546-
<script src="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.js"></script>
547567
<!-- Google Map -->
548568
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCh39n5U-4IoWpsVGUHWdqB6puEkhRLdmI&callback=myMap">
549569
</script>

docs/clinicadl/js/custom.js

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -45,21 +45,3 @@ function myMap() {
4545
var map = new google.maps.Map(document.getElementById("googleMap"), mapProp);
4646
}
4747

48-
49-
/** slider **/
50-
51-
document.addEventListener("DOMContentLoaded", function () {
52-
new Swiper(".mySwiper", {
53-
slidesPerView: 5, // Afficher 5 éléments à la fois
54-
slidesPerGroup: 1, // Glisser 1 élément à la fois
55-
loop: true, // Boucle infinie
56-
autoplay: {
57-
delay: 3000, // Défiler toutes les 2 secondes
58-
disableOnInteraction: false, // Continue après une interaction
59-
},
60-
navigation: {
61-
nextEl: ".swiper-button-next",
62-
prevEl: ".swiper-button-prev"
63-
}
64-
});
65-
});

docs/clinicadl/publications.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
<a class="nav-link" href="index.html">Home <span class="sr-only">(current)</span></a>
7070
</li>
7171
<li class="nav-item">
72-
<a class="nav-link" href="https://clinicadl.readthedocs.io/en/latest/"> Documentation</a>
72+
<a class="nav-link" href="https://clinicadl.readthedocs.io/en/stable/"> Documentation</a>
7373
</li>
7474
<li class="nav-item">
7575
<a class="nav-link" href="publications.html">Publications</a>

0 commit comments

Comments
 (0)