|
|
<!doctype html> <html lang="en">
<head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS --> <link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<title>Launcher</title> </head>
<body> <br><br><br> <div class="container"> <h3>Web Apps</h3> <hr> <div class="row"> <div class="col-sm-2"> <a href="http://127.0.0.1:4002" target="_blank" class="btn btn-outline-info"> <img src="img/etherpad.png" style="max-width:100px;" alt="etherpad" title="etherpad"> </a> </div> <div class="col-sm-2"> <a href="http://127.0.0.1:4001" target="_blank" class="btn btn-outline-info"> <img src="img/kanboard.png" style="max-width:100px;" alt="kanboard" title="kanboard"> </a> </div> <div class="col-sm-2"> <a href="http://127.0.0.1:4000" target="_blank" class="btn btn-outline-info"> <img src="img/gogs.png" style="max-width:100px;" alt="gogs" title="gogs"> </a> </div> <div class="col-sm-2"> <a href="http://127.0.0.1:4000" target="_blank" class="btn btn-outline-info"> <img src="img/nextcloud.png" style="max-width:100px;" alt="nextcloud" title="nextcloud"> </a> </div> </div>
<br><br> <h3>Services</h3> <hr> <div class="row"> <div class="col-sm-2"> <a href="http://127.0.0.1:64738" target="_blank" class="btn btn-outline-secondary"> <img src="img/mumble.png" style="max-width:100px;" alt="mumble" title="mumble"> </a> </div> </div> </div>
<!-- Optional JavaScript --> <!-- jQuery first, then Popper.js, then Bootstrap JS --> <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script> <script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script> </body>
</html>
|