github.com/cayleygraph/cayley@v0.7.7/templates/query_shape.html (about) 1 <!DOCTYPE html> 2 <!-- 3 // Copyright 2014 The Cayley Authors. All rights reserved. 4 // 5 // Licensed under the Apache License, Version 2.0 (the "License"); 6 // you may not use this file except in compliance with the License. 7 // You may obtain a copy of the License at 8 // 9 // http://www.apache.org/licenses/LICENSE-2.0 10 // 11 // Unless required by applicable law or agreed to in writing, software 12 // distributed under the License is distributed on an "AS IS" BASIS, 13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 // See the License for the specific language governing permissions and 15 // limitations under the License. 16 --> 17 <html> 18 <head> 19 {{template "head"}} 20 </head> 21 <body> 22 <div class="page-container"> 23 24 {{template "top_navbar"}} 25 26 <div class="container-fluid"> 27 <div class="row row-offcanvas row-offcanvas-left"> 28 {{template "sidebar"}} 29 <!-- main area --> 30 <div class="col-sm-10 col-xs-12" id="main"> 31 <div class="row"> 32 <div class="col-sm-12 col-xs-12 codecol"> 33 <textarea id="code">g.Emit("Hello World")</textarea> 34 </div> 35 </div> 36 <div class="row"> 37 <div class="col-xs-12 col-sm-12" id="viz"> 38 </div><!-- /.col-xs-12 main --> 39 </div> 40 </div> <!--/#main--> 41 </div> <!--/.row--> 42 </div><!--/.container--> 43 </div><!--/.page-container--> 44 </body> 45 {{template "foot"}} 46 <script src="/static/js/cayley_main.js" type="text/javascript" charset="utf-8"></script> 47 <script src="/static/js/cayley_shape.js" type="text/javascript" charset="utf-8"></script> 48 <script src="/static/js/query_viz.js" type="text/javascript" charset="utf-8"></script> 49 </html>