Packages

Digraph viewer provides a visual representation of a digraph model through a web based interface

Current section

Files

Jump to
digraph_viewer priv index.html
Raw

priv/index.html

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Digraph Viewer</title>
<link href="/css/tachyons.min.css" rel="stylesheet" />
<link href="/css/app.css" rel="stylesheet" />
</head>
<body>
<div class="flex absolute top-0 bottom-0 left-0 right-0">
<div class="w-20 bg-light">
<h1 class="f4 bold center mw6 bg-dark mv0 pv4 tc light-gray">Digraph Viewer</h1>
<ul id="graph_list" class="list pl0 ml0 mt0 center mw6 mt2">
<li data-template="graph-list-item" class="pa3 mt1 clr-light hover-bg-dark pointer">
<span data-name class="light-silver"></span>
<div class="cf mt2">
<div data-protection class="fl w-30 gray"></div>
<div data-cyclicity class="fl w-30 gray"></div>
<div data-memory class="fl w-40 gray"></div>
</div>
</li>
</ul>
</div>
<div class="w-80 pa2 flex flex-column">
<h3 id="graph_header" class="mv2">test_graph</h3>
<div id="graph_container" class="h-100 ba b--gray"></div>
</div>
</div>
</body>
<script src="/js/vis.min.js"></script>
<script src="/js/app.js"></script>
</html>