blob: b94bfce51821155e7be88ac8e519e6c880c72b96 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
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">BusinessAdmin 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');
?>
|