-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (27 loc) · 810 Bytes
/
index.html
File metadata and controls
30 lines (27 loc) · 810 Bytes
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
---
layout: default
---
<script type="text/javascript">
$(document).ready(function() {
var userLang = navigator.language || navigator.userLanguage;
redirectSite(userLang);
});
function redirectSite(lang) {
if(lang.indexOf('it')>=0 || true) {
window.location.href="it/index.html";
} else {
window.location.href="en/index.html";
}
}
</script>
<div class="row">
<div class="col-md-12">
<h2><center>Please wait...</center><h2>
</div>
<hr>
<!--div class="col-md-12">
<p><center>...or select your language: <a href="./en/index.html" class="btn btn-primary">English</a> <a href="./it/index.html" class="btn btn-primary">Italiano</a></center><p>
</div-->
</div>
<div style="visibility:hidden;"><a href="https://plus.google.com/100258377718556176811" rel="publisher">Google+</a></div>
<!--modified-->