mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-25 01:41:40 +00:00
27 lines
998 B
HTML
27 lines
998 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Chameleon Vision</title>
|
|
<link rel="stylesheet" type="text/css" href="assets/icons/css/all.css">
|
|
<link rel="stylesheet" type="text/css" href="css/iview.css" >
|
|
<link rel="stylesheet" type="text/css" href="css/main.css" >
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
<div class="sidenav">
|
|
<router-link to="/vision"><a><i class="fas fa-video fa-2x"></i></a></router-link>
|
|
<router-link to="/settings"><a><i class="fas fa-cog fa-2x"></i></a></router-link>
|
|
</div>
|
|
<div id="main">
|
|
<router-view></router-view>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="js/vue.js"></script>
|
|
<script src="js/vue-router.js"></script>
|
|
<script src="js/iview.min.js"></script>
|
|
<script src="js/main.js"></script>
|
|
<script src="js/routes.js"></script>
|
|
</body>
|
|
</html> |