Skip to content

Commit

Permalink
Added 960 grid system
Browse files Browse the repository at this point in the history
  • Loading branch information
weierophinney committed Oct 18, 2010
1 parent 4602978 commit d1f2658
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 1 deletion.
5 changes: 5 additions & 0 deletions mobile-app/.vimproject
Expand Up @@ -193,6 +193,11 @@ mobile-app=/home/matthew/git/zf-examples/mobile-app CD=. filter="*.php *.phtml *
public=public {
index.php
.htaccess
css=css {
960.css
reset.css
text.css
}
}
tests=tests {
phpunit.xml
Expand Down
5 changes: 4 additions & 1 deletion mobile-app/application/layouts/scripts/layout.phtml
Expand Up @@ -4,14 +4,17 @@ $this->placeholder('sidebar')
->setPostfix('</ul>');
$this->headTitle('Mobile Device Demo')
->setSeparator(' - ');
$this->headLink()->prependStylesheet('/css/960.css')
->prependStylesheet('/css/text.css')
->prependStylesheet('/css/reset.css');

echo $this->doctype() ?>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
<?php
echo $this->headTitle();
echo $this->headStyle();
echo $this->headLink();
echo $this->headScript();
?>
</head>
Expand Down
1 change: 1 addition & 0 deletions mobile-app/public/css/960.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions mobile-app/public/css/reset.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions mobile-app/public/css/text.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d1f2658

Please sign in to comment.