Skip to content
This repository was archived by the owner on Jan 1, 2020. It is now read-only.

Commit f65f399

Browse files
committed
using argument in basePath()
1 parent 45ec2f8 commit f65f399

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

module/Application/view/layout/layout.phtml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@
1212

1313
<!-- Le styles -->
1414
<?php echo $this->headLink(array('rel' => 'shortcut icon', 'type' => 'image/vnd.microsoft.icon', 'href' => $this->basePath() . '/img/favicon.ico'))
15-
->prependStylesheet($this->basePath() . '/css/style.css')
16-
->prependStylesheet($this->basePath() . '/css/bootstrap-theme.min.css')
17-
->prependStylesheet($this->basePath() . '/css/bootstrap.min.css') ?>
15+
->prependStylesheet($this->basePath('css/style.css'))
16+
->prependStylesheet($this->basePath('css/bootstrap-theme.min.css'))
17+
->prependStylesheet($this->basePath('css/bootstrap.min.css')) ?>
1818

1919
<!-- Scripts -->
2020
<?php echo $this->headScript()
21-
->prependFile($this->basePath() . '/js/bootstrap.min.js')
22-
->prependFile($this->basePath() . '/js/jquery.min.js')
23-
->prependFile($this->basePath() . '/js/respond.min.js', 'text/javascript', array('conditional' => 'lt IE 9',))
24-
->prependFile($this->basePath() . '/js/html5shiv.js', 'text/javascript', array('conditional' => 'lt IE 9',))
21+
->prependFile($this->basePath('js/bootstrap.min.js'))
22+
->prependFile($this->basePath('js/jquery.min.js'))
23+
->prependFile($this->basePath('js/respond.min.js'), 'text/javascript', array('conditional' => 'lt IE 9',))
24+
->prependFile($this->basePath('js/html5shiv.js'), 'text/javascript', array('conditional' => 'lt IE 9',))
2525
; ?>
2626

2727
</head>

0 commit comments

Comments
 (0)