blob: 46c32d74d7b6656b89ac559ff6781f8a08afdc18 (
plain) (
tree)
|
|
<?php
/**
* BusinessAdmin: administrative software for small companies
* Copyright (C) 2015 Camil Staps (ViviSoft)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><?=Constants::my_name?></title>
<link href="<?=Constants::url_external?>/css/bootstrap.min.css" rel="stylesheet">
<link href="<?=Constants::url_external?>/css/plugins/metisMenu/metisMenu.min.css" rel="stylesheet">
<link href="<?=Constants::url_external?>/css/plugins/timeline.css" rel="stylesheet">
<link href="<?=Constants::url_external?>/css/plugins/bootstrapValidator/bootstrapValidator.min.css" rel="stylesheet">
<link href="<?=Constants::url_external?>/css/plugins/bootstrap-editable.css" rel="stylesheet">
<link href="<?=Constants::url_external?>/css/plugins/bootstrap-select.min.css" rel="stylesheet">
<link href="<?=Constants::url_external?>/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="<?=Constants::url_external?>/css/sb-admin-2.css" rel="stylesheet">
<link href="<?=Constants::url_external?>/css/businessadmin.css" rel="stylesheet">
<!-- jQuery Version 1.11.0 -->
<script src="<?=Constants::url_external?>/js/jquery-1.11.0.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="<?=Constants::url_external?>/js/bootstrap.min.js"></script>
<!-- Plugins -->
<script src="<?=Constants::url_external?>/js/plugins/metisMenu/metisMenu.min.js"></script>
<script src="<?=Constants::url_external?>/js/plugins/bootstrapValidator/bootstrapValidator.min.js"></script>
<script src="<?=Constants::url_external?>/js/plugins/form/jquery.form.min.js"></script>
<script src="<?=Constants::url_external?>/js/plugins/bootstrap-editable.min.js"></script>
<script src="<?=Constants::url_external?>/js/plugins/bootstrap-select.min.js"></script>
<script src="<?=Constants::url_external?>/js/plugins/jquery.mixitup.min.js"></script>
<!-- Custom Theme JavaScript -->
<script src="<?=Constants::url_external?>/js/sb-admin-2.js"></script>
<!-- Fudge Custom JavaScript -->
<script src="<?=Constants::url_external?>/js/businessadmin.js"></script>
<script type="text/javascript">
var const_url_external = '<?=Constants::url_external?>';
</script>
</head>
<body>
|