Skip to content

Commit ab83a28

Browse files
committed
DRAFT: Add one-page structure
1 parent 26d9942 commit ab83a28

File tree

4 files changed

+319
-4
lines changed

4 files changed

+319
-4
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.Rproj.user
22
.Rhistory
33
.RData
4+
*Zone.Identifier

index.html

+79-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,79 @@
1-
<a href="DependenciesGraphs/index.html">DependenciesGraphs</a> -
2-
<a href="introduction_ramcharts/index.html">rAmCharts3</a> -
3-
<a href="shinymanager/index.html">shinymanageer</a> -
4-
<a href="visNetwork/index.html">visNetwork</a>
1+
<HEAD>
2+
<title>L'Open-Source de Datastorm</title>
3+
<meta name="viewport" content="width=device-width, initial-scale=1">
4+
<link rel="stylesheet" href="src/base_w3.css">
5+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
6+
</HEAD>
7+
<BODY>
8+
<div class="w3-bar w3-border w3-light-grey">
9+
<!-- <a href="/" class="w3-bar-item w3-button">Retour à l'accueil</a>-->
10+
<a href="#" class="w3-bar-item w3-button">Nous contacter</a>
11+
<a href="https://github.com/datastorm-open" class="w3-bar-item w3-button">Nous suivre sur GitHub</a>
12+
<a href="https://www.linkedin.com/company/12612427" class="w3-bar-item w3-button">Nous suivre sur LinkedIn</a>
13+
<a href="#" class="w3-bar-item w3-button w3-green w3-right">Plus d'infos sur Datastorm</a>
14+
</div>
15+
16+
<!-- START NAV BAR -->
17+
<div class="w3-sidebar w3-bar-block w3-light-grey w3-card" style="width:20%">
18+
<script>
19+
function accordionHandler(elemID) {
20+
var x = document.getElementById(elemID);
21+
if (x.className.indexOf("w3-show") == -1) {
22+
x.className += " w3-show";
23+
x.previousElementSibling.className += " w3-green";
24+
} else {
25+
x.className = x.className.replace(" w3-show", "");
26+
x.previousElementSibling.className =
27+
x.previousElementSibling.className.replace(" w3-green", "");
28+
}
29+
}
30+
</script>
31+
32+
<button class="w3-button w3-block w3-left-align" onclick="accordionHandler('demoAcc')">
33+
Nos apps de démo <i class="fa fa-caret-down"></i>
34+
</button>
35+
<div id="demoAcc" class="w3-hide w3-white w3-card">
36+
<a href="#overview_demo" class="w3-bar-item w3-button">Vue d'ensemble</a>
37+
<a href="https://github.com/datastorm-open/demo_speech2text" class="w3-bar-item w3-button">Démo Speech2Text</a>
38+
<a href="https://github.com/datastorm-open/demo_webinar_anonymization" class="w3-bar-item w3-button">Webinaire anonymisation</a>
39+
<a href="https://github.com/datastorm-open/demo_webinar_mlops" class="w3-bar-item w3-button">Webinaire MLOps</a>
40+
</div>
41+
42+
<button class="w3-button w3-block w3-left-align" onclick="accordionHandler('rprojAcc')">
43+
Nos packages Python <i class="fa fa-caret-down"></i>
44+
</button>
45+
<div id="rprojAcc" class="w3-hide w3-white w3-card">
46+
<a href="#overview_pkg_py" class="w3-bar-item w3-button">Vue d'ensemble</a>
47+
</div>
48+
49+
<button class="w3-button w3-block w3-left-align" onclick="accordionHandler('pyProjAcc')">
50+
Nos packages R <i class="fa fa-caret-down"></i>
51+
</button>
52+
<div id="pyProjAcc" class="w3-hide w3-white w3-card">
53+
<a href="#overview_pkg_r" class="w3-bar-item w3-button">Vue d'ensemble</a>
54+
<a href="DependenciesGraphs/index.html" class="w3-bar-item w3-button">DependenciesGraphs</a>
55+
<a href="introduction_ramcharts/index.html" class="w3-bar-item w3-button">rAmCharts3</a>
56+
<a href="shinymanager/index.html" class="w3-bar-item w3-button">shinymanager</a>
57+
<a href="visNetwork/index.html" class="w3-bar-item w3-button">visNetwork</a>
58+
</div>
59+
</div>
60+
<!-- END NAV BAR -->
61+
62+
<div style="margin-left:23%">
63+
64+
<h1>L'Open-Source de Datastorm</h1>
65+
<p>... paragraphe 1: intro ds ...</p>
66+
<p>... paragraphe 2: intro open-source ds ...</p>
67+
68+
<h2 id="overview_demo">Nos apps de démo</h2>
69+
<p>... paragraphe 3: overview app demo ...</p>
70+
71+
<h2 id="overview_pkg_py">Nos packages Python</h2>
72+
<p>... paragraphe 4: overview pkg py ...</p>
73+
74+
<h2 id="overview_pkg_r">Nos packages R</h2>
75+
<p>... paragraphe 5: overview pkg r ...</p>
76+
77+
</div>
78+
79+
</BODY>

0 commit comments

Comments
 (0)