-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
31 lines (30 loc) · 1.24 KB
/
index.php
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
<!doctype html>
<html>
<?= file_get_contents('web_include_asap_uiot/header.html') ?>
<body>
<?php
$lan = ($_GET['lang'] == 'br' ? 'br' : 'en');
echo file_get_contents("web_include_asap_uiot/index/$lan/main.html");
echo file_get_contents("web_include_asap_uiot/index/$lan/ideas.html");
echo file_get_contents("web_include_asap_uiot/index/$lan/think.html");
echo file_get_contents("web_include_asap_uiot/index/$lan/academics.html");
echo file_get_contents("web_include_asap_uiot/index/$lan/blog.html");
echo file_get_contents("web_include_asap_uiot/index/$lan/partners.html");
echo file_get_contents("web_include_asap_uiot/footer.html");
?>
<script src="https://uiotassets.blob.core.windows.net/assets/js/vendor/jquery.js"></script>
<script src="https://uiotassets.blob.core.windows.net/assets/js/foundation.min.js"></script>
<script>
jQuery(document).foundation();
</script>
<script src="https://uiotassets.blob.core.windows.net/assets/js/uiot/blog.js"></script>
<script src="https://uiotassets.blob.core.windows.net/assets/js/uiot/uiot.js"></script>
<script>
UIoT();
</script>
<script src="https://uiotassets.blob.core.windows.net/assets/js/uiot/analytics.js"></script>
<script>
Analytics();
</script>
</body>
</html>