-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
97 lines (83 loc) · 3.26 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>SonarQube</title>
<link rel="stylesheet" type="text/css" href="css/headers.css" />
<link rel="stylesheet" type="text/css" href="css/drawer.css" />
<link rel="stylesheet" type="text/css" href="css/tabs.css" />
<link rel="stylesheet" type="text/css" href="css/app.css" />
<link rel="stylesheet" type="text/css" href="css/lists.css" />
<link rel="stylesheet" type="text/css" href="css/progress_activity.css" />
<link rel="prefetch" type="application/l10n" href="l10n/locales.ini" />
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="js/brick-0.9.1.js"></script>
<script type="text/javascript" src="js/l10n.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</head>
<body role="application">
<section data-type="sidebar">
<header>
<menu type="toolbar">
<a href="#"><span class="icon icon-add">add</span></a>
</menu>
<h1>
<span data-l10n-id="Menu" />Menu<em></em>
</h1>
</header>
<nav>
<h2 data-l10n-id="ServerManagement">ServerManagement</h2>
<ul>
<li><a href="addnewserver.html" data-l10n-id="addNewServer">addNewServer</a></li>
</ul>
<!--
<h2>Extra</h2>
<ul>
<li><a href="#">Megosztás</a></li>
<li><a href="#">Értékelés</a></li>
<li><a href="#">Támogatás</a></li>
</ul>
-->
</nav>
</section>
<section id="drawer" role="region">
<header>
<a href="#"> <span class="icon icon-menu">hide sidebar</span></a> <a href="#drawer"> <span class="icon icon-menu">show sidebar</span></a>
<menu type="toolbar">
<a href="#" id="buttonRefresh"> <span class="icon icon-refresh">refresh</span></a>
</menu>
<h1 id="sq-name">SonarQube</h1>
</header>
<div role="main">
<!-- content start -->
<section role="region">
<ul role="tablist" data-items="3" class="top">
<li id="panel1" role="tab"><a href="#panel1" id="buttonProjects" data-l10n-id="Projects">Projects</a>
<div role="tabpanel" id="tabpanel1">
<section data-type="list">
<p id="projectsProgress" style="text-align: center;"><progress/></p>
<ul id="resultsProjects" />
</section>
</div></li>
<li id="panel2" role="tab"><a href="#panel2" id="buttonUsers" data-l10n-id="Users">Users</a>
<div role="tabpanel" id="tabpanel2">
<section data-type="list">
<p id="usersProgress" style="text-align: center;"><progress/></p>
<ul id="resultsUsers" />
</section>
</div></li>
<li id="panel3" role="tab"><a href="#panel3" id="buttonPlugins" data-l10n-id="Plugins">Plugins</a>
<div role="tabpanel" id="tabpanel3">
<section data-type="list">
<p id="pluginsProgress" style="text-align: center;"><progress/></p>
<ul id="resultsPlugins" />
</section>
</div></li>
</ul>
</section>
<!-- content end -->
</div>
</section>
</body>
</html>