Skip to content

Commit

Permalink
edited README
Browse files Browse the repository at this point in the history
  • Loading branch information
JacopKane committed Jun 6, 2012
1 parent aa77c16 commit 5a3d86b
Showing 1 changed file with 16 additions and 9 deletions.
25 changes: 16 additions & 9 deletions README.mdown
Expand Up @@ -16,16 +16,23 @@ The master branch has the following requirements:
* You have to include jQuery library and bootstrap.css (or bootstrap.less and less.js as your preference) in your layout.
* Clone repository to your plugin directory at unix terminal:
* as Submodule:
$ git submodule add https://github.com/mtkocak/Cakephp-Bootstrappifier.git /Your/Path/To/app/Plugins/CakeBootstrappifier
```
$ git submodule add https://github.com/mtkocak/Cakephp-Bootstrappifier.git /Your/Path/To/app/Plugins/CakeBootstrappifier
```
* ...or Clone:
$ git clone https://github.com/mtkocak/Cakephp-Bootstrappifier.git /Your/Path/To/app/Plugins/CakeBootstrappifier
* Example layout configuration:

echo $this->Html->script(array(
'https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js',
'/CakeBootstrappifier/js/cakebootstrap'
));
echo $this->Html->css(array('bootstrap'));
```
$ git clone https://github.com/mtkocak/Cakephp-Bootstrappifier.git /Your/Path/To/app/Plugins/CakeBootstrappifier'
```
* Example layout configuration:
```
<?php
echo $this->Html->script(array(
'https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js',
'/CakeBootstrappifier/js/cakebootstrap'
));
echo $this->Html->css(array('bootstrap'));
?>
```
### Contact
* For any question mtkocak@gmail.com

0 comments on commit 5a3d86b

Please sign in to comment.