github.com/cayleygraph/cayley@v0.7.7/templates/head.tmpl (about) 1 <!-- 2 // Copyright 2014 The Cayley Authors. All rights reserved. 3 // 4 // Licensed under the Apache License, Version 2.0 (the "License"); 5 // you may not use this file except in compliance with the License. 6 // You may obtain a copy of the License at 7 // 8 // http://www.apache.org/licenses/LICENSE-2.0 9 // 10 // Unless required by applicable law or agreed to in writing, software 11 // distributed under the License is distributed on an "AS IS" BASIS, 12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 // See the License for the specific language governing permissions and 14 // limitations under the License. 15 --> 16 {{define "head"}} 17 <title>Cayley</title> 18 <meta charset="utf-8" /> 19 <!-- Latest compiled and minified CSS --> 20 <link rel="stylesheet" href="/static/third_party/flatly/bootstrap.min.css"> 21 <!-- IE --> 22 <link rel="shortcut icon" type="image/x-icon" href="/static/favicon.ico" /> 23 <!-- other browsers --> 24 <link rel="icon" type="image/x-icon" href="/static/favicon.ico" /> 25 <link href='/static/third_party/OpenSans.css' rel='stylesheet' type='text/css'> 26 <link href='/static/third_party/Inconsolata.css' rel='stylesheet' type='text/css'> 27 <link rel="stylesheet" href="/static/third_party/codemirror/codemirror.min.css"> 28 <link rel="stylesheet" href="/static/css/grid.css"> 29 <link rel="stylesheet" href="/static/css/query_editor.css"> 30 31 <!-- Latest compiled and minified JavaScript --> 32 <script src="/static/third_party/jquery.min.js"></script> 33 <script src="/static/third_party/bootstrap.min.js"></script> 34 35 <!-- Codemirror --> 36 <script src="/static/third_party/codemirror/codemirror.min.js"></script> 37 <script src="/static/third_party/codemirror/addon/edit/matchbrackets.min.js"></script> 38 <script src="/static/third_party/codemirror/addon/comment/continuecomment.min.js"></script> 39 <script src="/static/third_party/codemirror/mode/javascript/javascript.min.js"></script> 40 <script src="/static/third_party/snap.svg-min.js"></script> 41 <script src="/static/third_party/fabric.min.js"></script> 42 43 <!-- D3.js --> 44 <script src="/static/third_party/d3.min.js"></script> 45 {{end}} 46 47 {{define "foot"}} 48 <script type='text/javascript'> 49 50 $(document).ready(function() { 51 $('[data-toggle=offcanvas]').click(function() { 52 $('.row-offcanvas').toggleClass('active'); 53 }); 54 }); 55 56 </script> 57 {{end}}