File: index.html

package info (click to toggle)
c4core 0.2.7-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 5,184 kB
  • sloc: cpp: 35,521; python: 2,786; javascript: 414; makefile: 6
file content (45 lines) | stat: -rw-r--r-- 1,499 bytes parent folder | download | duplicates (5)
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
<!DOCTYPE HTML>
<html>

  <head>
    <meta charset="UTF-8">
    <link rel="shortcut icon" href="#">
    <link rel="stylesheet" type="text/css" href="/static/jquery-ui.min.css"/>
    <link rel="stylesheet" type="text/css" href="/static/jquery.dataTables.min.css"/>
    <link rel="stylesheet" type="text/css" href="/static/highlight.github.min.css"/>
    <style>
      body {
        font-family: "Trebuchet MS", sans-serif;
        margin: 50px;
      }
      .chart {
        height: 700px; max-width: 920px; margin: 0px auto;
      }
    </style>
  </head>

  <body>
    <h1 id="heading-title">Title</h1>
    <div>
      Available benchmarks:
      <ul id="toc"></ul>
    </div>
    <div id="bm-results"></div>
    <div><pre id="dbg"></pre></div>
    <!-- scripts -->
    <script type="text/javascript" src="/static/jquery-3.3.1.min.js"></script>
    <script type="text/javascript" src="/static/jquery-ui.js"></script>
    <script type="text/javascript" src="/static/jquery.canvasjs.min.js"></script>
    <script type="text/javascript" src="/static/Chart.min.js"></script>
    <script type="text/javascript" src="/static/jquery.dataTables.min.js"></script>
    <script type="text/javascript" src="/static/highlight.min.js"></script>
    <script type="text/javascript" src="/bm.js"></script>
    <script type="text/javascript">
      $(document).ready(function() {
        $.getJSON('/manifest.json', function(specs){
          loadSpecs(specs);
        })
      });
    </script>
  </body>
</html>