HTML5 app for giving and receiving charity.
https://helpinghelena.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.8 KiB
42 lines
1.8 KiB
<!DOCTYPE html>
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui, viewport-fit=cover">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="theme-color" content="#ff9500">
|
|
<link rel="icon" href="img/logo.svg">
|
|
<link rel="stylesheet" href="fonts/material/Material_Icons.css">
|
|
<link rel="stylesheet" href="fonts/roboto/Roboto.css">
|
|
<link rel="stylesheet" href="node_modules/framework7/css/framework7.bundle.min.css">
|
|
<link rel="stylesheet" href="node_modules/@fortawesome/fontawesome-free/css/all.min.css">
|
|
<link rel="stylesheet" href="node_modules/leaflet/dist/leaflet.css">
|
|
<link rel="stylesheet" href="node_modules/mapbox-gl/dist/mapbox-gl.css">
|
|
<link rel="stylesheet" href="css/styles.css">
|
|
|
|
<title>Helping Helena</title>
|
|
|
|
<div id="app" class="color-theme-orange">
|
|
|
|
<!-- <div class="statusbar"></div> -->
|
|
|
|
<div class="view view-main"></div>
|
|
|
|
</div>
|
|
|
|
<script src="cordova.js"></script>
|
|
|
|
<script src="node_modules/jquery/dist/jquery.min.js"></script>
|
|
<script src="node_modules/framework7/js/framework7.bundle.min.js"></script>
|
|
<script src="node_modules/qrcode-generator/qrcode.js"></script>
|
|
<script src="node_modules/leaflet/dist/leaflet.js"></script>
|
|
<script src="node_modules/mapbox-gl/dist/mapbox-gl.js"></script>
|
|
<script src="node_modules/mapbox-gl-leaflet/leaflet-mapbox-gl.js"></script>
|
|
|
|
<script src="settings.js"></script>
|
|
<script src="js/api.js"></script>
|
|
<script src="js/input_type_money.js"></script>
|
|
<script src="routes.js"></script>
|
|
<script src="js/platform.js"></script>
|
|
<script src="js/main.js"></script>
|