-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
44 lines (44 loc) · 1.54 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>CMS DQM HOMEPAGE</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" href="foundation.min.css" />
<link rel="stylesheet" type="text/css" media="screen" href="style.css" />
</head>
<body>
<h1 class="main_title">CMS DQM Homepage</h1>
<hr />
<div data-closable class="alert-box callout warning">
<i class="fa fa-exclamation-triangle"></i> 2025/01: This page is not maintained any more. Please use <a href="https://cms-dqmdc.docs.cern.ch/">this page</a> instead.
</div>
<div class="content">
<div class="external_links">
<h4>External Links</h4>
<ul id="external_links"></ul>
</div>
<div class="links">
<h4>DQM Links:</h4>
<ul id="link_list"></ul>
<span
>You can add more links or changes by making a pull request
<a href="https://github.com/cms-DQM/cms-dqm-homepage">here.</a></span
>
</div>
<div class="run_number">
<div>
<h4>Run number dependent services</h4>
<label for="run_number">Please enter a run number:</label>
<input id="run_number" type="text" />
</div>
<div class="result">
<ul id="run_number_dependent_services"></ul>
</div>
</div>
</div>
</body>
<script type="text/javascript" src="config.js"></script>
<script src="main.js"></script>
</html>