aboutsummaryrefslogtreecommitdiff
path: root/include/about.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/about.php')
-rw-r--r--include/about.php107
1 files changed, 107 insertions, 0 deletions
diff --git a/include/about.php b/include/about.php
new file mode 100644
index 0000000..a428ce6
--- /dev/null
+++ b/include/about.php
@@ -0,0 +1,107 @@
+<?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/>.
+ */
+
+require_once('./index.php');
+require('./header.php');
+?>
+
+<div id="wrapper">
+
+ <?php require('nav.php'); ?>
+
+ <!-- Page Content -->
+ <div id="page-wrapper">
+ <div class="row">
+ <div class="col-lg-12">
+ <h1 class="page-header">About</h1>
+ </div>
+ <!-- /.col-lg-12 -->
+ </div>
+
+ <div class="row">
+ <div class="col-md-8">
+ <div class="panel panel-default">
+ <div class="panel-heading">About</div>
+ <div class="panel-body">
+ <p class="lead">This control panel was made using BusinessAdmin. It is open source software under the GPL 3.0 license.</p>
+ <p>A full version of the license is available <a href="<?=constants::url_external?>LICENSE">here</a>. An excerpt is shown below:</p>
+ <pre>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/.
+
+You can contact me, Camil Staps, here:
+
+Camil Staps
+www.camilstaps.nl
+info@camilstaps.nl</pre>
+ </div>
+ </div>
+ </div>
+ <!-- /.col-lg-12 -->
+
+ <div class="col-md-4">
+ <div class="panel panel-default" id="panel-contact">
+ <div class="panel-heading">Contact</div>
+ <div class="panel-body">
+ <img class="gravatar pull-right" src="https://www.gravatar.com/avatar/<?=md5('info@camilstaps.nl')?>?d=mm"/>
+ <p>For things related to BusinessAdmin, please use GitHub: <a href="https://github.com/camilstaps/BusinessAdmin">camilstaps/BusinessAdmin</a></p>
+ <p>The BusinessAdmin system was developed by <a href="http://camilstaps.nl/">Camil Staps</a>. See my website for contact details.</p>
+ </div>
+ </div>
+ </div>
+
+ <div class="col-md-4">
+ <div class="panel panel-default" id="panel-contact">
+ <div class="panel-heading">Thanks</div>
+ <div class="panel-body">
+ <p>BusinessAdmin was created using:</p>
+ <ul>
+ <li><a href="http://startbootstrap.com/template-overviews/sb-admin-2/">SB Admin 2</a></li>
+ <li><a href="http://getbootstrap.com">Bootstrap 3.2.0</a></li>
+ <li><a href="http://jquery.org/">jQuery 1.11.0</a></li>
+ <li><a href="http://fontawesome.io/">Font Awesome 4.3.0</a></li>
+ <li><a href="http://font.ubuntu.com/">Ubuntu fonts</a></li>
+ <li>And various jQuery plugins</li>
+ </ul>
+ <p>Many thanks go to the creators and developers of these software packages.</p>
+ </div>
+ </div>
+ </div>
+ </div>
+ <!-- /.row -->
+ </div>
+ <!-- /#page-wrapper -->
+
+</div>
+<!-- /#wrapper -->
+<?php
+require('./footer.php');
+?> \ No newline at end of file