source: trunk/www.guidonia.net/wp/wp-content/themes/carrington-mobile-1.0.2/footer/bottom.php@ 44

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 1.8 KB
Line 
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
18if (__FILE__ == $_SERVER['SCRIPT_FILENAME']) { die(); }
19if (CFCT_DEBUG) { cfct_banner(__FILE__); }
20
21$about_text = cfct_about_text();
22if (!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
35if (function_exists('cfmobi_mobile_exit')) {
36 cfmobi_mobile_exit();
37}
38?>
39
40 <hr />
41<?
42/*
43 <p class="small">
44 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 />
45*/
46?>
47<?php
48if (function_exists('cfmobi_mobile_exit')) {
49?>
50 <a href="http://www.guidonia.net">GuidoniaPuntoNet Mobile Edition</a> is usable.
51<?php
52}
53?>
54 </p>
55<?php
56if (cfct_get_option('cfct_credit') == 'yes') {
57/*
58?>
59 <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>
60<?php
61*/
62}
63?>
64 <div class="clear"></div>
65</div>
66<?php
67
68wp_footer();
69
70?>
71</body>
72</html>
Note: See TracBrowser for help on using the repository browser.