diff options
Diffstat (limited to 'src/web/_views/head.php')
-rw-r--r-- | src/web/_views/head.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/web/_views/head.php b/src/web/_views/head.php index e54fd1c..f184953 100644 --- a/src/web/_views/head.php +++ b/src/web/_views/head.php @@ -21,15 +21,17 @@ <link rel="icon" type="image/png" sizes="512x512" href="<?=$this->get_url("public/icons/logo512.png", TRUE)?>"> <link rel="icon" type="image/png" sizes="640x640" href="<?=$this->get_url("public/icons/logo640.png", TRUE)?>"> <link rel="manifest" href="/manifest.json"> - <!--[if lt IE 8 ]> - <?=$this->embed_css('css/ie/ie.css')?> - <![endif]--> + <?=$this->link_css('css/main.css');?> + <?=ie($this->embed_css('css/ie/ie.css'))?> + <?=ie_ua($this->embed_css('css/ie/ie4.css'), 4)?> <!--[if (gt IE 5)&(lt IE 8) ]> <?=$this->embed_css('css/ie/ie6.css')?> <![endif]--> <?php foreach($css as $file) echo $this->embed_css($file); ?> + <?=ie('<iframe width="0" height="0">')?> <?php foreach($js as $file) echo $this->link_js($file); ?> + <?=ie('</iframe>')?> |