render($file, $data); } /** * Retrieve path to a compiled blade view * @param $file * @param array $data * @return string */ function template_path($file, $data = []) { return sage('blade')->compiledPath($file, $data); } /** * @param $asset * @return string */ function asset_path($asset) { return sage('assets')->getUri($asset); } /** * Determine whether to show the sidebar * @return bool */ function display_sidebar() { static $display; isset($display) || $display = apply_filters('sage/display_sidebar', false); return $display; } /** * Page titles * @return string */ function title() { if (is_home()) { if ($home = get_option('page_for_posts', true)) { return get_the_title($home); } return __('Latest Posts', 'sage'); } if (is_archive()) { return get_the_archive_title(); } if (is_search()) { return sprintf(__('Search Results for %s', 'sage'), get_search_query()); } if (is_404()) { return __('Not Found', 'sage'); } return get_the_title(); }