diff options
author | Camil Staps | 2015-02-05 00:40:47 +0100 |
---|---|---|
committer | Camil Staps | 2015-02-05 00:40:47 +0100 |
commit | c50a323c25a0787ba2051b19721983776a229615 (patch) | |
tree | 87e13060ca6633bed3f5de2e25c5eedf866a0073 /header.php | |
parent | Initial commit (diff) |
Initial commit
Diffstat (limited to 'header.php')
-rw-r--r-- | header.php | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/header.php b/header.php new file mode 100644 index 0000000..fa2a3ec --- /dev/null +++ b/header.php @@ -0,0 +1,62 @@ +<?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-4.3.0/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> + + <!-- 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> + +</head> + +<body> |