Project

General

Profile

« Previous | Next » 

Revision 56023

implemented new portal with fastapi

View differences:

index.html
10 10
    <meta name="author" content="">
11 11

  
12 12
    <title>ScholeXplorer - The Data Literature Interlinking Service</title>
13
    <link rel="icon" type="image/png" href="favicon.png">
13
    <link rel="icon" type="static/image/png" href="static/favicon.png">
14 14

  
15 15
    <!-- Bootstrap Core CSS - Uses Bootswatch Flatly Theme: http://bootswatch.com/flatly/ -->
16
    <link href="css/bootstrap.min.css" rel="stylesheet">
16
    <link href="static/css/bootstrap.min.css" rel="stylesheet">
17 17

  
18
    <link href="css/jquery-jvectormap-2.0.3.css" rel="stylesheet">
18
    <link href="static/css/jquery-jvectormap-2.0.3.css" rel="stylesheet">
19 19

  
20 20
    <!-- Custom CSS -->
21
    <link href="css/freelancer.css" rel="stylesheet">
22
    <link href="bower/c3/c3.css" rel="stylesheet" type="text/css">
21
    <link href="static/css/freelancer.css" rel="stylesheet">
22
    <link href="static/bower/c3/c3.css" rel="stylesheet" type="text/css">
23 23

  
24 24
    <!-- Custom Fonts -->
25
    <link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
25
    <link href="static/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
26 26

  
27
    <link rel="stylesheet" type="text/css" href="bower_components/jssocials/dist/jssocials.css" />
28
    <link rel="stylesheet" type="text/css" href="bower_components/jssocials/dist/jssocials-theme-classic.css" />
27
    <link rel="stylesheet" type="text/css" href="static/bower_components/jssocials/dist/jssocials.css" />
28
    <link rel="stylesheet" type="text/css" href="static/bower_components/jssocials/dist/jssocials-theme-classic.css" />
29 29

  
30 30

  
31 31

  
......
90 90
                <span class="icon-bar"></span>
91 91
                <span class="icon-bar"></span>
92 92
            </button>
93
            <a class="pull-left" href="index.html#/"><img src="img/logo_wt.png" alt="ScholeXplorer"/></a>
93
            <a class="pull-left" href="#/"><img src="static/img/logo_wt.png" alt="ScholeXplorer"/></a>
94 94
        </div>
95 95

  
96 96
        <!-- Collect the nav links, forms, and other content for toggling -->
......
143 143

  
144 144
                <div class="footer-col col-md-12">
145 145
                    <a class="white-text" href="http://www.openaire.eu"><img style="height: 40px; padding-left: 8px"
146
                                                                             src="images/OpenAIREplus_logo.png"></a>
146
                                                                             src="static/images/OpenAIREplus_logo.png"></a>
147 147
                    <a class="white-text" href="https://rd-alliance.org/groups/rdawds-publishing-data-ig.html"><img
148
                            style="height: 40px; padding-left: 8px" src="images/rda_logo.png"></a>
148
                            style="height: 40px; padding-left: 8px" src="static/images/rda_logo.png"></a>
149 149
                    <a class="white-text" href="http://www.icsu-wds.org"><img style="height: 40px; padding-left: 8px"
150
                                                                              src="images/wds_logo.png"></a>
150
                                                                              src="static/images/wds_logo.png"></a>
151 151
                </div>
152 152
            </div>
153 153
        </div>
......
180 180

  
181 181

  
182 182
<!-- jQuery -->
183
<script src="js/jquery.js"></script>
183
<script src="static/js/jquery.js"></script>
184 184

  
185 185
<!-- Bootstrap Core JavaScript -->
186
<script src="js/bootstrap.min.js"></script>
186
<script src="static/js/bootstrap.min.js"></script>
187 187

  
188 188
<!-- Plugin JavaScript -->
189 189
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
190
<script src="js/classie.js"></script>
191
<script src="js/cbpAnimatedHeader.js"></script>
190
<script src="static/js/classie.js"></script>
191
<script src="static/js/cbpAnimatedHeader.js"></script>
192 192

  
193 193

  
194 194
<!-- Custom Theme JavaScript -->
195
<script src="js/freelancer.js"></script>
195
<script src="static/js/freelancer.js"></script>
196 196

  
197 197

  
198
<script src="js/spin.js"></script>
198
<script src="static/js/spin.js"></script>
199 199

  
200
<script src="bower/angular/angular.min.js"></script>
201
<script src="bower/angular-route/angular-route.min.js"></script>
202
<script src="angular/dliApplication.js"></script>
203
<script src="angular/service_v10.js"></script>
200
<script src="static/bower/angular/angular.min.js"></script>
201
<script src="static/bower/angular-route/angular-route.min.js"></script>
202
<script src="static/angular/dliApplication.js"></script>
203
<script src="static/angular/service_v10.js"></script>
204 204

  
205
<script src="angular/datasourceController.js"></script>
206
<script src="angular/mainPageController.js"></script>
207
<script src="angular/queryController.js"></script>
208
<script src="angular/statisticController.js"></script>
205
<script src="static/angular/datasourceController.js"></script>
206
<script src="static/angular/mainPageController.js"></script>
207
<script src="static/angular/queryController.js"></script>
208
<script src="static/angular/statisticController.js"></script>
209 209

  
210 210

  
211
<script src="bower/d3/d3.min.js"></script>
212
<script src="bower/c3/c3.min.js"></script>
213
<script src="js/jquery-jvectormap-2.0.3.min.js"></script>
214
<script src="js/jquery-jvectormap-world-mill.js"></script>
211
<script src="static/bower/d3/d3.min.js"></script>
212
<script src="static/bower/c3/c3.min.js"></script>
213
<script src="static/js/jquery-jvectormap-2.0.3.min.js"></script>
214
<script src="static/js/jquery-jvectormap-world-mill.js"></script>
215 215

  
216 216
<script>
217 217
    (function (i, s, o, g, r, a, m) {
......
233 233
</script>
234 234

  
235 235

  
236
<script src="bower_components/jssocials/dist/jssocials.min.js"></script>
236
<script src="static/bower_components/jssocials/dist/jssocials.min.js"></script>
237 237

  
238 238
<script>
239 239

  

Also available in: Unified diff