Project

General

Profile

1
<!doctype html>
2
<!-- The DOCTYPE declaration above will set the    -->
3
<!-- browser's rendering engine into               -->
4
<!-- "Standards Mode". Replacing this declaration  -->
5
<!-- with a "Quirks Mode" doctype may lead to some -->
6
<!-- differences in layout.                        -->
7

    
8
<html>
9
  <head>
10
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
11

    
12
    <!--                                                               -->
13
    <!-- Consider inlining CSS to reduce the number of requested files -->
14
    <!--                                                               -->
15
    <link type="text/css" rel="stylesheet" href="StatsConfig.css">
16
    <link type="text/css" rel="stylesheet" href="autocomplete.css">
17
    <link href='//fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
18

    
19
    <!--                                           -->
20
    <!-- Any title is fine                         -->
21
    <!--                                           -->
22
    <title>OpenAIRE statistics tool</title>
23

    
24
    <!--                                           -->
25
    <!-- This script loads your compiled module.   -->
26
    <!-- If you add any GWT meta tags, they must   -->
27
    <!-- be added before this line.                -->
28
    <!--                                           -->
29
    <script type="text/javascript" language="javascript" src="StatsConfig/StatsConfig.nocache.js"></script>
30
  	<script type="text/javascript" src="js/jquery/jquery-1.11.0.min.js"></script>
31
	<script type="text/javascript" src="http://code.highcharts.com/highcharts.js"></script>
32
	<script type="text/javascript" src="http://code.highcharts.com/highcharts-3d.js"></script>
33
	<script type="text/javascript" src="http://code.highcharts.com/highcharts-more.js"></script>
34
  </head>
35

    
36
  <!--                                           -->
37
  <!-- The body can have arbitrary html, or      -->
38
  <!-- you can leave the body empty if you want  -->
39
  <!-- to create a completely dynamic UI.        -->
40
  <!--                                           -->
41
  <body>
42
    <div id="block-header">
43
    </div>
44
    <div id="block-main">
45
        <div id="optionsColumn" class="leftColumn"></div>
46
        <div class="rightColumn">
47
            <div id="highchart" class="chartContent"><div id="loading-div"></div></div>
48
            <div id="tableChart" class="chartContent"></div>
49
        </div>
50
    </div>
51

    
52
  </body>
53
</html>
(2-2/3)