Mercurial > hg > NetworkVis
comparison popoto_dev/index.html @ 12:d67c5ad47709
implementation with dropdown popup, unfinished
| author | alistair |
|---|---|
| date | Fri, 02 Oct 2015 01:08:46 -0400 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 11:5674d1cf5ab2 | 12:d67c5ad47709 |
|---|---|
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 | |
| 4 <head> | |
| 5 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> | |
| 6 <title>Popoto Search</title> | |
| 7 <link rel="stylesheet" href="css/popoto.min.css"> | |
| 8 </head> | |
| 9 <body class="ppt-body"> | |
| 10 | |
| 11 <header class="ppt-header"> | |
| 12 <span class="ppt-header-span">POPOTO JS alpha version</span> | |
| 13 </header> | |
| 14 | |
| 15 <section class="ppt-section-main"> | |
| 16 <div class="ppt-section-header"> | |
| 17 <span class="ppt-header-span">Graph</span> search | |
| 18 </div> | |
| 19 | |
| 20 <div class="ppt-container-graph"> | |
| 21 <nav id="popoto-taxonomy" class="ppt-taxo-nav"> | |
| 22 <!-- Label/taxonomy filter will be generated here --> | |
| 23 </nav> | |
| 24 <div id="popoto-graph" class="ppt-div-graph"> | |
| 25 <!-- Graph will be generated here--> | |
| 26 </div> | |
| 27 </div> | |
| 28 | |
| 29 <div id="popoto-query" class="ppt-container-query"> | |
| 30 <!-- Query viewer will be generated here --> | |
| 31 </div> | |
| 32 | |
| 33 <!-- Cypher query viewer has been partially disabled for this alpha release and only display the query as text if enabled --> | |
| 34 <!--<div id="popoto-cypher" class="ppt-container-cypher">--> | |
| 35 <!--</div>--> | |
| 36 | |
| 37 <div class="ppt-section-header"> | |
| 38 <!-- The total results count is updated with a listener defined in app-template.js --> | |
| 39 RESULTS <span id="result-total-count" class="ppt-count"></span> | |
| 40 </div> | |
| 41 | |
| 42 <div id="popoto-results" class="ppt-container-results"> | |
| 43 <!-- Results will be generated here --> | |
| 44 </div> | |
| 45 | |
| 46 </section> | |
| 47 | |
| 48 <!----------------------> | |
| 49 <!-- Required scripts --> | |
| 50 | |
| 51 <!-- Jquery is only used in popoto.js to send ajax POST request on Neo4j REST API --> | |
| 52 <!-- This dependency will probably be removed in future releases --> | |
| 53 <script src="js/jquery-2.1.0.min.js" charset="utf-8"></script> | |
| 54 | |
| 55 <script src="js/d3.v3.min.js" charset="utf-8"></script> | |
| 56 <script src="js/popoto.min.js" charset="utf-8"></script> | |
| 57 | |
| 58 <!-- You can modify the parameters defined in this script to customize this application template --> | |
| 59 <script src="js/app-template.js" charset="utf-8"></script> | |
| 60 </body> | |
| 61 </html> |
