-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (64 loc) · 1.91 KB
/
index.html
File metadata and controls
70 lines (64 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CGMES Documentation</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
h1 {
text-align: center;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin: 5px 0;
}
a {
text-decoration: none;
color: #007BFF;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>CGMES Documentation</h1>
<p>
Entso-e provides html files for documenting the CGMES.
They are available at <a href="https://www.entsoe.eu/digital/common-information-model/">https://www.entsoe.eu/digital/common-information-model/</a>.
This repo hosts these html files using github pages.
</p>
<ul id="file-list">
</ul>
<script>
const folderPath = 'CGMESv2.4.15';
const fileList = document.getElementById('file-list');
const files = [
'DiagramLayoutProfile-v2_4_15-7Aug2014.html',
'DynamicsProfile-v2_4_15-7Aug2014.html',
'EquipmentBoundaryProfile-v2_4_15-7Aug2014.html',
'EquipmentProfile-v2_4_15-7Aug2014.html',
'GeographicalLocationProfile-v2_4_15-7Aug2014.html',
'StateVariablesProfile-v2_4_15-7Aug2014.html',
'SteadyStateHypothesisProfile-v2_4_15-7Aug2014.html',
'TopologyBoundaryProfile-v2_4_15-7Aug2014.html',
'TopologyProfile-v2_4_15-7Aug2014.html',
];
files.forEach(file => {
const listItem = document.createElement('li');
const link = document.createElement('a');
link.href = `${folderPath}/${file}`;
link.textContent = file;
listItem.appendChild(link);
fileList.appendChild(listItem);
});
</script>
</body>
</html>