diff options
Diffstat (limited to 'src/web/_views')
| -rw-r--r-- | src/web/_views/head.php | 2 | ||||
| -rw-r--r-- | src/web/_views/header.php | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/web/_views/head.php b/src/web/_views/head.php index ab7bb1b..1ca6954 100644 --- a/src/web/_views/head.php +++ b/src/web/_views/head.php @@ -23,7 +23,7 @@ <link rel="manifest" href="/manifest.json"> <?php /* Main CSS */ - if (CONTEXT['app'] != 'bucket') + if (ROUTER->req['app'] != 'bucket') echo $this->link_css('css/main.css'); /* IE 4-7 Styles */ diff --git a/src/web/_views/header.php b/src/web/_views/header.php index 90a31ea..f6b4740 100644 --- a/src/web/_views/header.php +++ b/src/web/_views/header.php @@ -17,15 +17,15 @@ <li class="ie-nav"> <?=ilang('action_home', href: $this->get_url('home'), - container: 'h2' + subtype: 'h2' )?></li> <li><?=ilang('action_projects', href: $this->get_url('projects'), - container: 'h2' + subtype: 'h2' )?></li> <li><?=ilang('action_blog', href: $this->get_url('blog'), - container: 'h2' + subtype: 'h2' )?></li> </ul> </div> |