\n",ASPEN_THEMENAME, ASPEN_VERSION, aspen_getopt('style_version'), aspen_getopt('themename'));
require_once('generatecss.php'); // include only now at runtime.
echo(' \n");
/* now head options */
echo(aspen_getopt('_althead_opts'));
echo(aspen_getopt('head_opts')); /* let the user have the last word! */
if (aspen_is_checked_page_opt('pp_hide_site_title')) /* best to just do this inline */
echo ('' . "\n");
aspen_fix_IE();
echo("\n\n");
}
}
function aspen_fix_IE() {
/* Design note: This conditional IE support code is injected directly into the header. This is consistent
with the fact that the main custom CSS is also normally injected into the header, and the fact that it
needs to include the PIE script using 'get_template_directory_uri' which will not be the same for all
installations and all versions of Aspen.
*/
$add_PIE = !aspen_getopt('_hide_PIE');
echo("\n");
if ($add_PIE)
aspen_bake_PIE();
}
function aspen_bake_PIE() {
/**
* Attach CSS3PIE behavior to elements
* Add elements here that need PIE applied
*/
$pie_loc = get_template_directory_uri() . '/js/PIE/PIE.php';
?>