You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rcn-frontserver/res/html/index.html

37 lines
774 B
HTML

<html>
<head>
<title> Landing 1 </title>
</head>
<body>
<div class="app">
<div class="actionList">
<ul>
<li onclick="navigate('index.htm', 'Home')">
Home
</li>
<li onclick="navigate('data.htm', 'Data')">
Data
</li>
<li onclick="navigate('about.htm', 'About')">
About
</li>
</ul>
</div>
<div class="mainview" state="retracted">
<div class="navigationBar row">
<div class="menu" onclick="toggleActionMenu()">
</div>
<div class="title">
<span> Title </span>
</div>
</div>
<div class="content">
<script type="text/javascript">
6 years ago
navigate(window.location.hash.replace('#', '') || 'index.htm', window.location.hash || 'Home');
</script>
</div>
</div>
</div>
</body>
</html>