?> <!-- Apple Stuff --> <link rel="apple-touch-icon-precomposed" href="<?php echo mh_apple_icon_logo_url(); ?> "/> <?php echo mh_ios_smart_banner(); ?> <!-- Windows stuff --> <meta name="msapplication-TileColor" content="#ffffff"/> <meta name="msapplication-TileImage" content="<?php echo mh_apple_icon_logo_url(); ?> "/> <!-- Stylesheets --> <?php queue_css_file('screen'); echo head_css(); ?> <!-- Custom CSS via theme config --> <?php if ($uploaded_stylesheet = get_theme_option('custom stylesheet')) { echo '<link rel="stylesheet" type="text/css" media="screen" href="' . WEB_ROOT . '/files/theme_uploads/' . $uploaded_stylesheet . '" />'; }
function mh_custom_content($length = 500) { $html = ''; $html .= '<article>'; $html .= '<header>'; $html .= '<h2><span class="hidden">About </span>' . option('site_title') . '</h2>'; /*$html .= '<span class="find-us">'.mh_home_find_us().'</span>';*/ $html .= '<h3>' . get_theme_option('site_tagline') . '</h3>'; $html .= '</header><div class="about-snippet">'; $html .= '<div id="inline-logo"><img alt="' . option('site_title') . ' logo" src="' . mh_apple_icon_logo_url() . '"/></div>'; $html .= snippet(mh_about(), 0, $length, "..."); $html .= '</div></article>'; $html .= '<p class="view-more-link"><a href="' . url('about') . '">Read more <span>About Us</span></a></p>'; echo $html; echo '<div id="rr_home-items" class="hidden">'; echo mh_random_or_recent(); echo '</div>'; }