1 | <?php
|
---|
2 |
|
---|
3 | // This file is part of the Carrington Mobile Theme for WordPress
|
---|
4 | // http://carringtontheme.com
|
---|
5 | //
|
---|
6 | // Copyright (c) 2008-2009 Crowd Favorite, Ltd. All rights reserved.
|
---|
7 | // http://crowdfavorite.com
|
---|
8 | //
|
---|
9 | // Released under the GPL license
|
---|
10 | // http://www.opensource.org/licenses/gpl-license.php
|
---|
11 | //
|
---|
12 | // **********************************************************************
|
---|
13 | // This program is distributed in the hope that it will be useful, but
|
---|
14 | // WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
15 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
---|
16 | // **********************************************************************
|
---|
17 |
|
---|
18 | if (__FILE__ == $_SERVER['SCRIPT_FILENAME']) { die(); }
|
---|
19 | if (CFCT_DEBUG) { cfct_banner(__FILE__); }
|
---|
20 |
|
---|
21 | $about_text = cfct_about_text();
|
---|
22 | if (!empty($about_text)) {
|
---|
23 | ?>
|
---|
24 | <div id="about" class="group">
|
---|
25 | <h3><?php printf(__('About %s', 'carrington-mobile'), get_bloginfo('name')); ?></h3>
|
---|
26 | <?php
|
---|
27 | echo $about_text;
|
---|
28 | ?>
|
---|
29 | </div>
|
---|
30 | <?php
|
---|
31 | }
|
---|
32 | ?>
|
---|
33 | <div id="footer">
|
---|
34 | <?php
|
---|
35 | if (function_exists('cfmobi_mobile_exit')) {
|
---|
36 | cfmobi_mobile_exit();
|
---|
37 | }
|
---|
38 | ?>
|
---|
39 |
|
---|
40 | <hr />
|
---|
41 |
|
---|
42 | <p class="small">
|
---|
43 | Proudly powered by <a href="http://wordpress.org"><strong>WordPress</strong></a> and <a href="http://carringtontheme.com"><strong>Carrington</strong></a>. <?php wp_loginout(); wp_register(' | ', ''); ?><br />
|
---|
44 | <?php
|
---|
45 | if (function_exists('cfmobi_mobile_exit')) {
|
---|
46 | ?>
|
---|
47 | <a href="http://crowdfavorite.com/wordpress">WordPress Mobile Edition</a> available from Crowd Favorite.
|
---|
48 | <?php
|
---|
49 | }
|
---|
50 | ?>
|
---|
51 | </p>
|
---|
52 | <?php
|
---|
53 | if (cfct_get_option('cfct_credit') == 'yes') {
|
---|
54 | ?>
|
---|
55 | <p id="developer-link"><?php printf(__('<a href="http://crowdfavorite.com" title="Custom WordPress development, design and backup services." rel="developer designer">%s</a>', 'carrington-mobile'), 'Carrington Theme by Crowd Favorite'); ?></p>
|
---|
56 | <?php
|
---|
57 | }
|
---|
58 | ?>
|
---|
59 | <div class="clear"></div>
|
---|
60 | </div>
|
---|
61 | <?php
|
---|
62 |
|
---|
63 | wp_footer();
|
---|
64 |
|
---|
65 | ?>
|
---|
66 | </body>
|
---|
67 | </html>
|
---|