/**
 * Writes the site logo to the page.
 *
 * @param array The parameters passed into the function. This currently takes no parameters.
 * @param Smarty The smarty object rendering the template.
 * @return The url.
 */
function smarty_function_mobile_logo($Params, &$Smarty)
{
    $Result = Gdn_Theme::MobileLogo('Title');
    return $Result;
}