Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!-- begin footer -->
- <div class="footer">
- <!-- begin footer content -->
- <div class="footer_content">
- <!-- begin footer widgets -->
- <div class="footer_widgets clearfix">
- <!-- begin footer widget 1 -->
- <div class="footer_widgets_box">
- <?php if (function_exists('dynamic_sidebar') && dynamic_sidebar('Footer Column 1')) {} else { echo "Footer Column 1"; } ?> </div>
- <!-- end footer widget 1 -->
- <!-- begin footer widget 2 -->
- <div class="footer_widgets_box">
- <?php if (function_exists('dynamic_sidebar') && dynamic_sidebar('Footer Column 2')) {} else { echo "Footer Column 2"; } ?> </div>
- <!-- end footer widget 2 -->
- <!-- begin footer widget 3 -->
- <div class="footer_widgets_box">
- <?php if (function_exists('dynamic_sidebar') && dynamic_sidebar('Footer Column 3')) {} else { echo "Footer Column 3"; } ?> </div>
- <!-- end footer widget 3 -->
- <!-- begin footer widget 3 -->
- <div class="footer_widgets_box">
- <?php if (function_exists('dynamic_sidebar') && dynamic_sidebar('Footer Column 4')) {} else { echo "Footer Column 4"; } ?> </div>
- <!-- end footer widget 4 -->
- <!-- begin footer widget 5 -->
- <div class="footer_widgets_box">
- <?php
- if (function_exists('dynamic_sidebar') && dynamic_sidebar('Footer Column 5 (Contact)')) {} else {
- if (get_option('disable_footer_contact', 1) == '1') {
- if($no_contact != true) {
- ?>
- <div class="widgets_title"><?php echo get_option("footer_contact_title", "Contact us"); ?></div>
- <!-- begin contact form -->
- <div class="footer_form">
- <?php echo get_option("footer_contact_subtitle", "Get in touch with us"); ?>
- <form id="myform" action="" method="post">
- <input id="form_name" name="Name" type="text" value="<?php echo get_option("footer_contact_name", "name"); ?>" class="activefocus is_required vname" />
- <input id="form_email" name="Email" type="text" value="<?php echo get_option("footer_contact_email", "email address"); ?>" class="activefocus is_required vsemail vemail"/>
- <input id="form_subject" name="Subject" type="text" value="<?php echo get_option("footer_contact_subject", "subject"); ?>" class="activefocus is_required vsubject"/>
- <div class="textarea_form"><textarea id="form_message" name="Message" class="activefocus is_required vmessage" rows="0" cols="0"><?php echo get_option("footer_contact_message", "message"); ?></textarea></div>
- <div id="result" style="display:none;"></div>
- <div id="success" class="mini_div"><?php echo get_option("footer_contact_success", "Success, mail sent."); ?></div>
- <div id="error" class="mini_div"><?php echo get_option("footer_contact_error", "Error! Check Fields"); ?></div>
- <input type="submit" name="Submit" value="<?php echo get_option("footer_contact_send", "send"); ?>" id="mySend" class="submit_bg" />
- </form>
- </div>
- <!-- end contact form -->
- <?php
- }
- } else {
- echo "Footer Column 5 (Contact)";
- }
- }
- ?>
- </div>
- <!-- end footer widget 5 -->
- </div>
- <!-- end footer widgets -->
- <?php if (get_option('disable_our_pages', 1) == '1') : ?>
- <!-- begin footer pages -->
- <div class="footer_widget_pages">
- <div class="widgets_title"><?php echo get_option("our_pages_title", "Our Pages"); ?></div>
- <ul>
- <li><a href="<?php bloginfo('siteurl'); ?>">Home</a></li>
- <?php
- $pages = get_pages('sort_column=post_date&sort_order=ASC&parent=0');
- foreach($pages as $page)
- {
- ?>
- <li><a href="<?php echo get_page_link($page->ID) ?>"><?php echo $page->post_title ?></a></li>
- <?php
- }
- ?>
- </ul>
- </div>
- <!-- end footer pages -->
- <?php endif; ?>
- <div class="cleardiv"></div>
- <div class="footer_line"></div>
- <!-- begin copyright and social icons -->
- <div class="footer_end clearfix">
- <?php if (get_option('disable_copyright_text', 1) == '1') : ?>
- <!-- begin copyright text -->
- <div class="footer_copyright">
- Copyright © <?php echo date("Y"); ?> · <a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a>, All Rights Reserved. Powered by <a href="http://www.free-premium-wordpress-themes.com" rel="dofollow">Free Wordpress Themes</a>
- <?php echo get_option('copyright_text', $copyright_text); ?>
- </div>
- <!-- end copyright text -->
- <?php endif; ?>
- <?php if (get_option('disable_social', 1) == '1') : ?>
- <!-- begin social network icons -->
- <div class="footer_social_network">
- </div>
- <!-- end social network icons -->
- <?php endif; ?>
- </div>
- <!-- end copyright and social icons -->
- </div>
- <!-- begin footer content -->
- </div>
- <!-- end footer -->
- <?php if (get_option('cufon_active', 1) == '1'): ?><script type="text/javascript">Cufon.now();</script>
- <?php endif; ?>
- <script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/custom.js"></script>
- <?php echo get_option('google_analytics'); ?></body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement