TwitterBootstrapWithRails
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(TwitterBootstrapWithRails);
*目次 [#z420c285]
#contents
*参考情報 [#j95158de]
-[[Rails]]
-[[Rails3]]
-[[TwitterBootstrap]]
-[[seyhunak/twitter-bootstrap-rails - GitHub:https://gith...
-[[twitter bootstrap railsを使ったら職が見つかり彼女も出...
-[[Bootstrap:基本的な事:http://greenapple-room.com/conc/...
-[[Twitter Bootstrapのグリッド機能で段組を作成 [ホームペ...
-[[モダンなデザインが簡単に使える Twitter Bootstrap [ホー...
-[[ツイッター・ブートストラップ使用例:http://guide.withab...
-[[./古い情報]]
*Bootstrap3を使うには [#b39deb5a]
-https://github.com/seyhunak/twitter-bootstrap-rails/tree...
*twitter-bootstrap-rails 2.2.6 [#z2eaae88]
**概要 [#p34014c0]
-css版とless版のインストール方法がことなる。
-less版をいれたほうがカスタマイズが容易っぽい。
**インストール [#zc47872d]
-Gemfileの編集し以下の3行を追加
#pre{{
gem "therubyracer"
gem "less-rails" #Sprockets (what Rails 3.1 uses for its ...
gem 'twitter-bootstrap-rails'
}}
-bundle installの実行
bundle install --path vendor/bundle
-cssなどの生成
bundle exec rails generate bootstrap:install
-layoutの生成(固定レイアウトの例)
bundle exec rails g bootstrap:layout application fixed
**修正 [#m0a25b06]
-そのままだとヘッダー部分が本文と重なっており萎える。boot...
#pre{{
body {
padding-top: 60px;
}
}}
**$(window).loadとか$(window).readyが動かない [#qcedf733]
-作成したapplication.html.erbの一番下でjavascriptをinclud...
終了行:
&tag(TwitterBootstrapWithRails);
*目次 [#z420c285]
#contents
*参考情報 [#j95158de]
-[[Rails]]
-[[Rails3]]
-[[TwitterBootstrap]]
-[[seyhunak/twitter-bootstrap-rails - GitHub:https://gith...
-[[twitter bootstrap railsを使ったら職が見つかり彼女も出...
-[[Bootstrap:基本的な事:http://greenapple-room.com/conc/...
-[[Twitter Bootstrapのグリッド機能で段組を作成 [ホームペ...
-[[モダンなデザインが簡単に使える Twitter Bootstrap [ホー...
-[[ツイッター・ブートストラップ使用例:http://guide.withab...
-[[./古い情報]]
*Bootstrap3を使うには [#b39deb5a]
-https://github.com/seyhunak/twitter-bootstrap-rails/tree...
*twitter-bootstrap-rails 2.2.6 [#z2eaae88]
**概要 [#p34014c0]
-css版とless版のインストール方法がことなる。
-less版をいれたほうがカスタマイズが容易っぽい。
**インストール [#zc47872d]
-Gemfileの編集し以下の3行を追加
#pre{{
gem "therubyracer"
gem "less-rails" #Sprockets (what Rails 3.1 uses for its ...
gem 'twitter-bootstrap-rails'
}}
-bundle installの実行
bundle install --path vendor/bundle
-cssなどの生成
bundle exec rails generate bootstrap:install
-layoutの生成(固定レイアウトの例)
bundle exec rails g bootstrap:layout application fixed
**修正 [#m0a25b06]
-そのままだとヘッダー部分が本文と重なっており萎える。boot...
#pre{{
body {
padding-top: 60px;
}
}}
**$(window).loadとか$(window).readyが動かない [#qcedf733]
-作成したapplication.html.erbの一番下でjavascriptをinclud...
ページ名: