Revision cd4a8d7346baf648f385d800fb3ab13e7e702b0b authored by Iddan Aaronsohn on 15 October 2019, 17:12:54 UTC, committed by Iddan Aaronsohn on 15 October 2019, 17:12:54 UTC
1 parent 1801500
Raw File
query.html
<!DOCTYPE html>
<!--
// Copyright 2014 The Cayley Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
-->
<html>
<head>
{{template "head"}}
</head>
<body>
<div class="page-container">

  {{template "top_navbar"}}

  <div class="container-fluid">
    <div class="row row-offcanvas row-offcanvas-left">
      {{template "sidebar"}}
      <!-- main area -->
      <div class="col-sm-10 col-xs-12" id="main">
        <div class="row">
          <div class="col-sm-12 col-xs-12 codecol">
            <textarea id="code">g.Emit("Hello World")</textarea>
          </div>
        </div>
        <div class="row">
          <div class="col-sm-12 col-xs-12">
            <textarea id="output" name="output"></textarea>
          </div>
        </div>
      </div> <!--/#main-->
    </div> <!--/.row-->
  </div><!--/.container-->
</div><!--/.page-container-->
</body>
{{template "foot"}}
<script src="/static/js/cayley_main.js" type="text/javascript" charset="utf-8"></script>
<script src="/static/js/cayley_query.js" type="text/javascript" charset="utf-8"></script>
</html>
back to top