Merge branch 'master' of git.freeside.biz:/home/git/freeside
[freeside.git] / httemplate / docs / about.html
1 <% include('/elements/header-popup.html', { title=>$title, nobr=>1 } ) %>
2
3 <% include('/elements/init_overlib.html') %>
4
5 <CENTER>
6 % if ( $agentnum ) {
7
8     <IMG SRC="<%$fsurl%>view/logo-agent.cgi?agentnum=<%$agentnum%>" BORDER="0"><BR>
9
10 %   my $url = $conf->config('company_url', $agentnum);
11 %   if ( $url ) {
12       <BR><BR>
13       <FONT SIZE="+1"><A HREF="<% $conf->config('company_url', $agentnum) %>" TARGET="_top"><%$title%> homepage</A></FONT>
14 %   }
15
16 % } else {
17
18   <IMG SRC="<%$fsurl%>images/small-logo.png" BORDER="0"><BR>
19   <H3>version <% $FS::VERSION %></H3>
20
21 % }
22 </CENTER>
23
24 <CENTER>
25 % if ( $agentnum ) {
26   <BR><BR>
27   <FONT SIZE="-2">Based on Freeside version <% $FS::VERSION %><BR>
28 % } else {
29   <FONT SIZE="-1">
30 % }
31 &copy; 2013 Freeside Internet Services, Inc.<BR>
32 All rights reserved.<BR>
33 Licensed under the terms of the<BR>
34 GNU <b>Affero</b> General Public License.<BR>
35 </FONT>
36 </CENTER>
37 <BR>
38
39 <CENTER>
40 % if ( $agentnum ) {
41   <FONT SIZE="-2">
42 % }
43 <A HREF="credits.html">Credits</A>
44  &nbsp;&nbsp;&nbsp;&nbsp;
45 <A HREF="javascript:void(0)" onClick="openLicense()">License</A>
46
47
48 <BR><BR>
49 <A HREF="http://www.freeside.biz/freeside" TARGET="_top">Freeside homepage</A>
50 % if ( $agentnum ) {
51   </FONT>
52 % }
53 </CENTER>
54
55 <BR>
56
57 % unless ( $agentnum ) {
58   <CENTER>
59   <FONT SIZE="-3">"" - R. Hunter</FONT>
60   </CENTER>
61 % }
62
63 <SCRIPT TYPE="text/javascript">
64
65 function openLicense() {
66   parent.<% include('/elements/popup_link_onclick.html',
67                       'action'      => $fsurl.'docs/license.html',
68                       'label'       => 'License',
69                       'actionlabel' => 'License',
70                       'width'       => 600,
71                       'height'      => 360,
72                       'color'       => '#7e0079',
73                       'nofalse'     => 1,
74                    )
75   %>
76 }
77
78 </SCRIPT>
79
80 </BODY>
81 </HTML>
82 <%init>
83
84 my $conf = new FS::Conf;
85 my $agentnum = $conf->config('brand-agent');
86
87 my $title = $agentnum ? $conf->config('company_name', $agentnum) : 'Freeside';
88
89 </%init>