-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (41 loc) · 1.94 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>galaHAL</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link rel="stylesheet" href="assets/bootstrap-4.3.1-dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="assets/open-iconic/font/css/open-iconic-bootstrap.min.css" />
</head>
<body>
<div id="app">
<div class="container">
<!-- Component author -->
<author @query-docs="search"></author>
<!-- Component navigation -->
<navigation :nb-docs="nbDocs" @filter-type-doc="filterDocs"></navigation>
<div class="row">
<div class="col">
<!-- Alert: the API is loading -->
<alert message="En cours de chargement…" v-if="nbDocs.all === 0"></alert>
<!-- Alert: query unsuccessful -->
<alert message="Aucun document ne correspond à vos critères de recherche." v-if="selectedDocs.length === 0 && isSearchInProgress" type="danger"></alert>
<!-- Component references -->
<references :docs="selectedDocs" :pub-dates="pubDates"></references>
</div>
</div>
<p class="text-right text-muted"><small>Propulsé par <a href="https://github.com/Alex-bzh/galaHAL" target="_blank">galaHAL</a></small></p>
</div>
</div>
<script src="assets/vuejs/vue.min.js"></script>
<script src="assets/jquery/jquery-3.4.1.min.js"></script>
<script src="assets/bootstrap-4.3.1-dist/js/bootstrap.bundle.min.js"></script>
<script src="config.js"></script>
<script src="components/search.js"></script>
<script src="components/alert.js"></script>
<script src="components/author.js"></script>
<script src="components/navigation.js"></script>
<script src="components/references.js"></script>
<script src="main.js"></script>
</body>
</html>