-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·68 lines (64 loc) · 3.05 KB
/
index.html
File metadata and controls
executable file
·68 lines (64 loc) · 3.05 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
title: Software-Defined Underwater Wireless Networking & Acoustic Smart Modems
description: Subnero provides industry-leading underwater acoustic modems and the UnetStack software ecosystem. Powering the Blue Economy with reliable subsea communication and sensing solutions.
section_id: home
---
<!DOCTYPE html>
<html>
{% include head.html %}
<body class="home-page">
{% include header.html %}
<div id="main" role="main" class="top-shift">
<div class="full no-padding">
<div class="fullscreen">
<img id="fullscreen-video" alt="Subnero Underwater Wireless Technology in Action" src="images/lp.jpg">
<div class="overlay"></div>
<div class="layer">
<h1 class="thin" id="to-be-update">The future of <br> <span class="text-gradient g-orange">underwater wireless</span></h1>
<p>Enabling scalable subsea networks for communication, monitoring, and localization - powered by intelligent modems, the UnetStack networking software ecosystem, and the SWIS product family.</p>
<div class="g4x-hero-btns">
<a href="{{site.baseurl}}/products/#smart-modems" class="button g-orange-btn">Smart Modems</a>
<a href="{{site.baseurl}}/products/#unetstack" class="button g-orange-btn">UnetStack</a>
<a href="{{site.baseurl}}/products/swis/#adcp-edition" class="button g-orange-btn">SWIS - ADCP Edition</a>
</div>
</div>
<div class="announcements">
<div class="announcements-content">
<h3 class="thin">What's new? </h3>
<div class="latest-news">
{% for post in site.posts limit:3 %}
<a href="{{site.url}}{{post.url}}">{{ post.title }}</a>
{% endfor %}
</div>
</div>
</div>
<script>
let animEl = document.querySelectorAll('.latest-news a');
if(animEl){
let count = 0;
animEl[count].classList.add('active');
let intervalId = setInterval(function() {
animEl[count].classList.remove('active');
count++;
if(count >= animEl.length) count = 0;
animEl[count].classList.add('active');
}, 6000);
}
</script>
</div>
</div>
<script src="{{ "/javascripts/jquery.countTo.js" | prepend: site.baseurl }}" type="text/javascript"></script>
<script src="{{ "/javascripts/jquery.appear.js" | prepend: site.baseurl }}" type="text/javascript"></script>
<script src="{{ "/javascripts/jquery.sequence-min.js" | prepend: site.baseurl }}" type="text/javascript"></script>
<script src="{{ "/javascripts/jquery.easing.1.3.js" | prepend: site.baseurl }}" type="text/javascript"></script>
<script src="{{ "/javascripts/app.js" | prepend: site.baseurl }}" type="text/javascript"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-130948711-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-130948711-1');
</script>
</body>
</html>