view client/public/index.html @ 2455:54c9fe587fe6

Subdivide SQL function to prepare for improved error handling The context of an error (e.g. the function in which it occured) can be inferred by the database client. Not doing all in one statement will render the context more meaningful.
author Tom Gottfried <tom@intevation.de>
date Fri, 01 Mar 2019 18:38:02 +0100
parents 5d4bfe4fa13c
children 4cebd0a1f41f
line wrap: on
line source

<!--
  This is Free Software under GNU Affero General Public License v >= 3.0
  without warranty, see README.md and license for details.

  SPDX-License-Identifier: AGPL-3.0-or-later
  License-Filename: LICENSES/AGPL-3.0.txt

  Copyright (C) 2018 by via donau
   – Österreichische Wasserstraßen-Gesellschaft mbH
  Software engineering by Intevation GmbH
-->
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width,initial-scale=1.0" />
    <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
    <title>gemmajs</title>
    <style>
      html {
        height: 100%;
        width: 100%;
        margin: 0 auto;
      }
      body {
        height: 100%;
        width: 100%;
        background-color: #efefef !important;
      }
    </style>
  </head>

  <body>
    <noscript>
      <strong
        >This webapplication needs Javascript enabled to run. Please enable it
        to continue.</strong
      >
    </noscript>
    <div id="app"></div>
    <!-- built files will be auto injected -->
  </body>
</html>