The best way to learn how to use the WebCore is by example. See the documentation for more information.
The requested URL is always shown first; if a page uses one or more WebCore templates, those are shown afterwards.
Source for: https://www.earthli.com/shared/privacy.php
Uses WebCore template(s):
00 <?php
01 require_once ('webcore/init.php');
02 require_once ($Page->page_template_for ('webcore/pages/privacy.php'));
03 ?>
Source for template: webcore/pages/privacy.php
00 <?php
01
02 /****************************************************************************
03
04 Copyright (c) 2002-2014 Marco Von Ballmoos
05
06 This file is part of earthli WebCore.
07
08 earthli WebCore is free software; you can redistribute it and/or modify
09 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 earthli WebCore is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with earthli WebCore; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21
22 For more information about the earthli WebCore, visit:
23
24 http://www.earthli.com/software/webcore
25
26 ****************************************************************************/
27
28 $Page->template_options->title = 'Privacy';
29 $Page->title->subject = 'Privacy';
30
31 $Page->location->add_root_link ();
32 $Page->location->append ('Privacy');
33 $Page->start_display ();
34 ?>
35 <div class="main-box">
36 <div class="text-flow">
37 <h2>Short and Sweet</h2>
38 <p>The owners and operators of this site will not give out any of your information to
39 any third parties. Ever. Period.</p>
40 <h2>The Nitty Gritty</h2>
41 <p>As with most dynamic web sites, this one requires you to create an account
42 so that you can participate fully.</p>
43 <h3>Email addresses</h3>
44 <p>Your email address will not be shared with anyone, nor will it be displayed
45 on the web site (unless you ask us to in the user preferences). Email
46 notifications are opt-in and can be completely disabled at any time.
47 Anonymous subscriptions, because of system limitations, cannot be protected
48 fully—create an account in order to ensure complete privacy.</p>
49 <h3>Passwords</h3>
50 <p>Your password is immediately encrypted before storing in the database and is not
51 known to the operators of this web site (therefore it cannot be lost or
52 shared). That also means that a lost password is lost forever and cannot be
53 sent to you. It can, however, be reset.</p>
54 <h3>Cookies</h3>
55 <p>This site uses cookies to enhance the user experience (read: make stuff
56 work better). These cookies can be deleted at any time without losing any
57 information (though you will have to log in again). No user information is
58 stored in the cookie.</p>
59 <h3>Log Files</h3>
60 <p>This site employs logging to track its usage. These logs include information
61 about which computer visited what when, but the data cannot be linked to a
62 user's personal information.</p>
63 <h3>Legal Loopholes</h3>
64 <p>It is possible that the law of the country in which this server resides
65 may require the site to disclose any of the personal information mentioned above
66 in order to comply with a current judicial proceeding, a court order or
67 other legal process. In this case, this site will do its best to inform users
68 of the changed circumstances. If you want more detail, you're kind of on your
69 own—suffice it to say that it's a big, bad world out there and life
70 isn't always fair.</p>
71 <h3>Selling Out</h3>
72 <p>If this site is sold at a fantastical profit to another entity, all user
73 information will belong to the new entity and their rules will apply. Again,
74 this site will do its best to inform users of the changed circumstances.</p>
75 </div>
76 </div>
77 <?php
78 $Page->finish_display ();
79 ?>