-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (75 loc) · 4 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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PHACronyms - acronyms we use at the Public Health Agency of Canada</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<!-- Icons Font Awesome (to access icons, import Font Awesome) -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
crossorigin="anonymous">
<link rel="icon" type="image/x-icon" sizes="96x96" href="favicon.ico">
<link rel="stylesheet" href="custom.css">
<!-- GC Design System -->
<link rel="stylesheet"
href="https://cdn.design-system.alpha.canada.ca/@cdssnc/gcds-components@latest/dist/gcds/gcds.css">
<script type="module"
src="https://cdn.design-system.alpha.canada.ca/@cdssnc/gcds-components@latest/dist/gcds/gcds.esm.js"></script>
<script nomodule
src="https://cdn.design-system.alpha.canada.ca/@cdssnc/gcds-components@latest/dist/gcds/gcds.js"></script>
<!-- dataTables stuff -->
<script src="https://code.jquery.com/jquery-3.5.1.js"></script>
<link rel="stylesheet" href="https://cdn.datatables.net/2.0.5/css/dataTables.dataTables.css" />
<script src="https://cdn.datatables.net/2.0.5/js/dataTables.js"></script>
</head>
<body>
<div
style="display:block; width:100%; background-color:#ff5733; text-align:center; font-size:20px; padding:0.5em; font-weight:bold">
This is just a prototype, not a real thing</div>
<gcds-header lang-href="#" skip-to-href="#">
</gcds-header>
<div class="content-wrapper">
<main id="mc" class="general-layout">
<section>
<article class="h1-dark text-light">
<div class="container-xl mx-auto">
<h1 class="mb-400">
PHACronyms
</h1>
<p class="mb-400">The acronyms we use at the Public health Agency of Canada</p>
<a class="link-light" href="#" data-toggle="collapse" data-target="#moreInfo">More
information</a>
<div id="moreInfo" class="collapse">
<p class="mb-400">The table below contains a list of acronyms that are used at PHAC and their definition. This is a work in progress and many acronyms are missing, especially French acronyms. If you'd like to contribute, please add or modify acronyms in this <a href="https://022gc.sharepoint.com/:l:/s/InformationManagement-DataManagementServicesPeopleandculture/FMqEnjlJOkVHv4f8gGzKl94BMPqawVFjzdPR_3AifMIDVA?e=ozD4Za">sharepoint list</a>. </p>
</div>
</div>
</article>
</section>
<section>
<article class="py-450">
<div class="container-xl mx-auto">
<!-- this is the HTML for the datables table -->
<table id="phacronymTable" class="table table-striped" style="width:100%">
<thead>
<tr>
<th>acronym</th>
<th>definition</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</article>
</section>
</main>
</div>
<script src="scripts.js"></script>
<script src="search-highlight.js"></script>
<!-- Footer Web component code (Angular, Vue) -->
<gcds-footer display="compact">
</gcds-footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>