source: SRUAggregator/trunk/src/main/resources/assets/index.html @ 5919

Last change on this file since 5919 was 5919, checked in by emanuel.dima@uni-tuebingen.de, 9 years ago
  1. alpha11: UI refactor
File size: 2.1 KB
Line 
1<!DOCTYPE html>
2<html>
3<head>
4        <title>Aggregator2</title>
5        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6        <meta name="viewport" content="width=device-width, initial-scale=1.0">
7        <link href="lib/bootstrap.min.css" rel="stylesheet">
8        <link href="lib/font-awesome.min.css" rel="stylesheet">
9        <link href="CLARIN.css" rel="stylesheet">
10        <link href="base.css" rel="stylesheet">
11</head>
12<body>
13        <noscript>
14                <div>Federated Content Search Aggregator requires JavaScript to be enabled!</div>
15        </noscript>
16
17        <style>
18                html,
19                body {
20                        margin:0;
21                        padding:0;
22                        height:100%;
23                }
24                #container {
25                        min-height:100%;
26                        position:relative;
27                }
28                #body {
29                        padding-bottom:100px;   /* Height of the footer */
30                }
31                #footer {
32                        position:absolute;
33                        bottom:0;
34                        width:100%;
35                        height:100px;   /* Height of the footer */
36                }
37        </style>
38
39        <div id="container">
40                <div id="body">
41                        <div id="reactMain">
42                </div>
43                <div id="footer">
44                        <div class="container">
45                                <div id="CLARIN_footer_left">
46                                                <a title="about" id="aboutlink" href="about"> 
47                                                <span class="glyphicon glyphicon-info-sign"></span>
48                                                <span>VERSION 2.0.0.α11</span>
49                                        </a>
50                                </div>
51                                <div id="CLARIN_footer_middle">
52                                        <a title="CLARIN ERIC" href="https://www.clarin.eu/">
53                                        <img src="img/clarindLogo.png" alt="CLARIN ERIC logo" style="height:80px"/>
54                                        </a>
55                                </div>
56                                <div id="CLARIN_footer_right">
57                                        <a title="contact" href="mailto:fcs@clarin.eu">
58                                                <span class="glyphicon glyphicon-envelope"></span>
59                                                <span> CONTACT</span>
60                                        </a>
61                                </div>
62                        </div>
63                </div>
64        </div>
65
66        <!--[if lt IE 9]>
67                <script src="http://cdnjs.cloudflare.com/ajax/libs/es5-shim/3.4.0/es5-shim.js"></script>
68                <script src="http://cdnjs.cloudflare.com/ajax/libs/es5-shim/3.4.0/es5-sham.js"></script>
69        <![endif]-->   
70        <script src="lib/jquery.min.js"></script>
71        <script src="lib/react-with-addons.js"></script>
72        <script src="lib/bootstrap.min.js"></script>
73        <script src="js/components.js"></script>
74        <script src="js/corpora.js"></script>
75        <script src="js/search.js"></script>
76        <script src="js/main.js"></script>
77</body>
78</html>
Note: See TracBrowser for help on using the repository browser.