-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (69 loc) · 3.42 KB
/
index.html
File metadata and controls
81 lines (69 loc) · 3.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SynFlow</title>
<!-- style css -->
<link rel="stylesheet" type="text/css" href="src/css/style.css">
<!-- driverjs -->
<script src="https://cdn.jsdelivr.net/npm/driver.js@latest/dist/driver.js.iife.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/driver.js@latest/dist/driver.css"/>
<!-- jquery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script type="module" src="src/js/main.js"></script>
<!-- slider -->
<script src="https://cdn.jsdelivr.net/npm/range-slider-input@2.4/dist/rangeslider.umd.min.js"></script>
<!-- bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
<!-- d3 -->
<script src="https://d3js.org/d3.v6.min.js"></script>
<script src="https://unpkg.com/d3-v6-tip@1.0.6/build/d3-v6-tip.js"></script>
<!-- font awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<script type="module" src="src/js/spin.js"></script>
<link rel="stylesheet" type="text/css" href="src/css/spin.css">
<!-- Tour Script -->
<script type="module" src="src/js/tour.js"></script>
</head>
<body>
<!-- Header SynFlow -->
<div class="header-main">
<div class="header-content">
<img src="public/img/SynFlow_logo.png" alt="SynFlow Logo" class="header-logo">
<a href="https://github.com/SouthGreenPlatform/synflow" target="_blank" class="github-link" title="View on GitHub">
<i class="fab fa-github"></i>
</a>
</div>
</div>
<div class="my-container">
<div id="spinner"></div>
<div id="main-container"></div>
</img>
<!-- Pied de page -->
<footer class="footer-main">
<div class="my-container d-flex flex-column flex-md-row align-items-center justify-content-between">
<div>
<a href="https://synflow.southgreen.fr/" target="_blank" title="SynFlow">
<img src="public/img/SynFlow_logo.png" alt="Synflow" style="width:200px;">
</a>
</div>
<div>
<div class="footer-logos mb-2 mb-md-0">
<a href="https://www.cirad.fr/" target="_blank" title="CIRAD">
<img src="public/img/cirad_logo.png" alt="CIRAD" style="width:150px; margin-right:20px;">
</a>
<a href="https://www.southgreen.fr/" target="_blank" title="SouthGreen">
<img src="public/img/Logo Southgreen.png" alt="SouthGreen" style="width:150px;">
</a>
</div>
<div class="footer-text text-muted small">
© 2025 SynFlow — SouthGreen Platform & CIRAD
</div>
</div>
</div>
</footer>
</body>
</html>