-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
60 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,59 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Simselect playground</title> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"> | ||
<link rel="stylesheet" type="text/css" href="assets/style.css"> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/cytoscape/3.28.1/cytoscape.min.js"></script> | ||
<script src="https://unpkg.com/[email protected]/WebCola/cola.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/cytoscape-cola.min.js"></script> | ||
<script src="graph.js"></script> | ||
<script src="table.js"></script> | ||
<script src="index.js"></script> | ||
</head> | ||
<body class="pt-5"> | ||
<nav class="navbar navbar-expand-lg navbar-light bg-light"> | ||
<div class="container"> | ||
<a class="navbar-brand" href="#">Simselect</a> | ||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
|
||
<div class="collapse navbar-collapse" id="navbarSupportedContent"> | ||
<ul class="navbar-nav mr-auto"> | ||
<li class="nav-item"> | ||
<a class="nav-link active" aria-current="page" href="https://incf.org">INCF</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link active" aria-current="page" href="https://www.cnsorg.org">OCNS</a> | ||
</li> | ||
</ul> | ||
</div> | ||
<head> | ||
<title>Simselect</title> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"> | ||
<link rel="stylesheet" type="text/css" href="assets/style.css"> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/cytoscape/3.28.1/cytoscape.min.js"></script> | ||
<script src="https://unpkg.com/[email protected]/WebCola/cola.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/cytoscape-cola.min.js"></script> | ||
<script src="graph.js"></script> | ||
<script src="table.js"></script> | ||
<script src="index.js"></script> | ||
</head> | ||
|
||
<body> | ||
<nav class="navbar navbar-expand-lg navbar-light bg-light"> | ||
<a class="navbar-brand" href="#">Simselect</a> | ||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" | ||
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
<div class="collapse navbar-collapse" id="navbarSupportedContent"> | ||
<ul class="navbar-nav mr-auto"> | ||
<li class="nav-item"> | ||
<a class="nav-link" aria-current="page" href="https://incf.org">INCF</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" aria-current="page" href="https://www.cnsorg.org">OCNS</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</nav> | ||
<!-- main page content --> | ||
<div class="container-fluid pt-3"> | ||
<div class="row"> | ||
<div class="col-4 align-items-left"> | ||
<div class="" id="simulators"></div> | ||
</div> | ||
</nav> | ||
<!-- main page content --> | ||
<div class="container-fluid"> | ||
<div class="row"> | ||
<div class="col-4" id="simulators"></div> | ||
<div class="col-4 align-items-center" id="cy"></div> | ||
<div class="col-4 align-items-center h-100" id="details"></div> | ||
<div class="col-4 align-items-center"> | ||
<div class="h-100" id="cy"></div> | ||
</div> | ||
</div> | ||
<div class="col-4 align-items-center h-100" id="details"> | ||
|
||
<!-- footer --> | ||
<div class="container"> | ||
<footer class="d-flex flex-wrap justify-content-between align-items-center py-3 my-4 border-top"> | ||
<p class="col-md-4 mb-0 text-muted">© 2024 Simselect contributors</p> | ||
<p class="col-md-4 mb-0 text-muted">Built with <a href="https://js.cytoscape.org">cytoscape</a></p> | ||
<p class="col-md-4 mb-0 text-muted"><a href="https://github.com/OCNS/Simselect">Sources</a></p> | ||
</footer> | ||
</div> | ||
</div> | ||
</body> | ||
</div> | ||
|
||
<!-- footer --> | ||
<div class="container-fluid"> | ||
<footer class="d-flex flex-wrap justify-content-evenly text-center py-3 my-4 border-top"> | ||
<p class="col-md-4 mb-0 text-muted">© 2024 Simselect contributors</p> | ||
<p class="col-md-4 mb-0 text-muted">Built with <a href="https://js.cytoscape.org">cytoscape</a></p> | ||
<p class="col-md-4 mb-0 text-muted"><a href="https://github.com/OCNS/Simselect">Sources</a></p> | ||
</footer> | ||
</div> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters